Skip to content

Commit

Permalink
add make command for per project
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Dec 8, 2015
1 parent ee8d655 commit 2522ebf
Show file tree
Hide file tree
Showing 5 changed files with 279 additions and 36 deletions.
13 changes: 13 additions & 0 deletions composer.json
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"
]
}
132 changes: 97 additions & 35 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions homestead
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();
Loading

0 comments on commit 2522ebf

Please sign in to comment.