Skip to content

Commit a758e59

Browse files
committed
new composer based installer.
0 parents  commit a758e59

File tree

5 files changed

+405
-0
lines changed

5 files changed

+405
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor
2+
.DS_Store

composer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "laravel/installer",
3+
"description": "Laravel application installer.",
4+
"keywords": ["laravel"],
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Taylor Otwell",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"autoload": {
13+
"classmap": ["src"]
14+
},
15+
"require": {
16+
"illuminate/support": "~4.2",
17+
"guzzlehttp/guzzle": "~4.0",
18+
"symfony/console": "~2.5"
19+
},
20+
"bin": [
21+
"laravel"
22+
],
23+
"minimum-stability": "stable"
24+
}

composer.lock

Lines changed: 248 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

laravel

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env php
2+
<?php
3+
4+
require __DIR__.'/../../autoload.php';
5+
//require __DIR__.'/vendor/autoload.php';
6+
7+
$app = new Symfony\Component\Console\Application('Laravel Installer', '1.1');
8+
$app->add(new Laravel\Installer\Console\NewCommand);
9+
10+
$app->run();

0 commit comments

Comments
 (0)