diff --git a/CHANGELOG.md b/CHANGELOG.md index fb8c324..a620cca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.5.0 (2017-08-30) + +Features: + + - Add support for Laravel 5.5 + ## 1.4.0 (2017-01-24) Features: diff --git a/README.md b/README.md index ad1954f..4da8cd2 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,15 @@ Replace `name` for your project name and `version` for one of the available vers `5.0` -`5.1` - You can use `LTS` instead +`5.1` `5.2` `5.3` -`5.4` - Default version +`5.4` + +`5.5` - Default version - You can use `LTS` instead `master` - Install from the current master branch diff --git a/src/NewCommand.php b/src/NewCommand.php index 614f5e1..6e539cf 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -170,7 +170,10 @@ protected function getInstallationCommand($version, $directory) case "5.3": return $command . " \"5.3.*\""; break; - case "5.4": + case "5.3": + return $command . " \"5.4.*\""; + break; + case "5.5": return $command; break; case "develop": @@ -219,7 +222,7 @@ protected function getVersion($input) $version = $input->getArgument('version'); if ($version == "") { - $version = "5.4"; + $version = "5.5"; } return strtolower($version);