Skip to content

Commit

Permalink
Fixes for laravel 5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mauri870 committed Oct 11, 2017
1 parent 24bd281 commit a29b28f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.5.0 (2017-08-30)
## 1.5.0 (2017-10-11)

Features:

Expand Down
2 changes: 1 addition & 1 deletion laravel
Original file line number Diff line number Diff line change
Expand Up @@ -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();
2 changes: 1 addition & 1 deletion src/NewCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down

0 comments on commit a29b28f

Please sign in to comment.