forked from laravel/homestead
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee8d655
commit 2522ebf
Showing
5 changed files
with
279 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,24 @@ | ||
{ | ||
"name": "laravel/homestead", | ||
"description": "A virtual machine for web artisans.", | ||
"require": { | ||
"php": ">=5.5", | ||
"symfony/console": "2.8.*|~3.0", | ||
"symfony/process": "2.8.*|~3.0" | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Taylor Otwell", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Laravel\\Homestead\\": "src/" | ||
} | ||
}, | ||
"bin": [ | ||
"homestead" | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
|
||
if (file_exists(__DIR__.'/vendor/autoload.php')) { | ||
require __DIR__.'/vendor/autoload.php'; | ||
} else { | ||
require __DIR__.'/../../autoload.php'; | ||
} | ||
|
||
$app = new Symfony\Component\Console\Application('Laravel Homestead', '3.0.0'); | ||
|
||
$app->add(new Laravel\Homestead\MakeCommand); | ||
|
||
$app->run(); |
Oops, something went wrong.