Commit ab1b243f authored by Taylor Otwell's avatar Taylor Otwell

working on laravel installer.

parent a795ea72
......@@ -4,20 +4,20 @@
"Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
"hash": "e734d31c1f516e588f8717c081acca97",
"hash": "30f7952460ad672b7384653c225281c1",
"packages": [
{
"name": "guzzlehttp/guzzle",
"version": "4.2.2",
"version": "4.2.3",
"source": {
"type": "git",
"url": "https://github.com/guzzle/guzzle.git",
"reference": "9c4fbbf6457768f5036fbd88f1229f3fca812a5d"
"reference": "66fd916e9f9130bc22c51450476823391cb2f67c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/9c4fbbf6457768f5036fbd88f1229f3fca812a5d",
"reference": "9c4fbbf6457768f5036fbd88f1229f3fca812a5d",
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/66fd916e9f9130bc22c51450476823391cb2f67c",
"reference": "66fd916e9f9130bc22c51450476823391cb2f67c",
"shasum": ""
},
"require": {
......@@ -69,7 +69,7 @@
"rest",
"web service"
],
"time": "2014-09-08 22:11:58"
"time": "2014-10-05 19:29:14"
},
{
"name": "guzzlehttp/streams",
......@@ -126,17 +126,17 @@
},
{
"name": "symfony/console",
"version": "v2.5.4",
"version": "v2.6.4",
"target-dir": "Symfony/Component/Console",
"source": {
"type": "git",
"url": "https://github.com/symfony/Console.git",
"reference": "748beed2a1e73179c3f5154d33fe6ae100c1aeb1"
"reference": "e44154bfe3e41e8267d7a3794cd9da9a51cfac34"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/Console/zipball/748beed2a1e73179c3f5154d33fe6ae100c1aeb1",
"reference": "748beed2a1e73179c3f5154d33fe6ae100c1aeb1",
"url": "https://api.github.com/repos/symfony/Console/zipball/e44154bfe3e41e8267d7a3794cd9da9a51cfac34",
"reference": "e44154bfe3e41e8267d7a3794cd9da9a51cfac34",
"shasum": ""
},
"require": {
......@@ -144,16 +144,18 @@
},
"require-dev": {
"psr/log": "~1.0",
"symfony/event-dispatcher": "~2.1"
"symfony/event-dispatcher": "~2.1",
"symfony/process": "~2.1"
},
"suggest": {
"psr/log": "For using the console logger",
"symfony/event-dispatcher": ""
"symfony/event-dispatcher": "",
"symfony/process": ""
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.5-dev"
"dev-master": "2.6-dev"
}
},
"autoload": {
......@@ -177,7 +179,54 @@
],
"description": "Symfony Console Component",
"homepage": "http://symfony.com",
"time": "2014-08-14 16:10:54"
"time": "2015-01-25 04:39:26"
},
{
"name": "symfony/process",
"version": "v2.6.4",
"target-dir": "Symfony/Component/Process",
"source": {
"type": "git",
"url": "https://github.com/symfony/Process.git",
"reference": "ecfc23e89d9967999fa5f60a1e9af7384396e9ae"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/Process/zipball/ecfc23e89d9967999fa5f60a1e9af7384396e9ae",
"reference": "ecfc23e89d9967999fa5f60a1e9af7384396e9ae",
"shasum": ""
},
"require": {
"php": ">=5.3.3"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.6-dev"
}
},
"autoload": {
"psr-0": {
"Symfony\\Component\\Process\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Symfony Community",
"homepage": "http://symfony.com/contributors"
},
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
}
],
"description": "Symfony Process Component",
"homepage": "http://symfony.com",
"time": "2015-01-25 04:39:26"
}
],
"packages-dev": [],
......@@ -185,6 +234,7 @@
"minimum-stability": "stable",
"stability-flags": [],
"prefer-stable": false,
"prefer-lowest": false,
"platform": [],
"platform-dev": []
}
......@@ -4,7 +4,7 @@
require __DIR__.'/../../autoload.php';
//require __DIR__.'/vendor/autoload.php';
$app = new Symfony\Component\Console\Application('Laravel Installer', '1.1');
$app = new Symfony\Component\Console\Application('Laravel Installer', '1.2.0');
$app->add(new Laravel\Installer\Console\NewCommand);
$app->run();
......@@ -133,9 +133,6 @@ class NewCommand extends \Symfony\Component\Console\Command\Command {
return $this;
}
<<<<<<< HEAD
}
=======
/**
* Get the composer command for the environment.
*
......@@ -152,4 +149,3 @@ class NewCommand extends \Symfony\Component\Console\Command\Command {
}
}
>>>>>>> fe5fac4ab635b3194a15572b93cbe6136d1850ef
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment