From a29b28fbda85f11e73a7a8e2773ad2fd62731bdd Mon Sep 17 00:00:00 2001 From: Mauri de Souza Nunes Date: Wed, 11 Oct 2017 08:49:25 -0300 Subject: [PATCH] Fixes for laravel 5.5 --- CHANGELOG.md | 2 +- laravel | 2 +- src/NewCommand.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a620cca..e47e67b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 1.5.0 (2017-08-30) +## 1.5.0 (2017-10-11) Features: diff --git a/laravel b/laravel index 4c6c45c..40be2db 100755 --- a/laravel +++ b/laravel @@ -5,6 +5,6 @@ if (file_exists(__DIR__.'/../../autoload.php')) { } else { require __DIR__.'/vendor/autoload.php'; } -$app = new Symfony\Component\Console\Application('Laravel Custom Installer', '1.3.0'); +$app = new Symfony\Component\Console\Application('Laravel Custom Installer', '1.5.0'); $app->add(new Artesaos\LaravelInstaller\Console\NewCommand); $app->run(); \ No newline at end of file diff --git a/src/NewCommand.php b/src/NewCommand.php index 6e539cf..03e1d02 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -170,7 +170,7 @@ protected function getInstallationCommand($version, $directory) case "5.3": return $command . " \"5.3.*\""; break; - case "5.3": + case "5.4": return $command . " \"5.4.*\""; break; case "5.5":