diff --git a/.gitattributes b/.gitattributes index bb6265e..7742c9a 100755 --- a/.gitattributes +++ b/.gitattributes @@ -9,3 +9,4 @@ /.scrutinizer.yml export-ignore /tests export-ignore /.editorconfig export-ignore +/.styleci.yml export-ignore diff --git a/.styleci.yml b/.styleci.yml index f4d3cbc..548eb47 100755 --- a/.styleci.yml +++ b/.styleci.yml @@ -1,4 +1,7 @@ preset: laravel disabled: + - self_accessor + - short_list_syntax + - alpha_ordered_imports - single_class_element_per_statement diff --git a/CHANGELOG.md b/CHANGELOG.md index 36cc597..d20b957 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `app-setup-cmd` will be documented in this file -## 1.0.0 - 201X-XX-XX +## 1.0.0 - 20XX-XX-XX - initial release + +## 0.2.0 - 2020-03-03 + +- laravel 7.0 support. diff --git a/composer.json b/composer.json index f073fad..a7ea77c 100755 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "ammonkc/laravel-init", "description": "Laravel Artisan commands to help with initial app setup", - "version": "0.1.4", + "version": "0.2.0", "keywords": [ "ammonkc", "laravel-init", @@ -19,13 +19,13 @@ ], "require": { "php": "^7.1", - "illuminate/console": "^5.7|^5.8|^6.0", - "illuminate/support": "^5.7|^5.8|^6.0", + "illuminate/console": "^5.7|^5.8|^6.0|^7.0|^8.0", + "illuminate/support": "^5.7|^5.8|^6.0|^7.0|^8.0", "spatie/laravel-permission": "^2.37|^3.0" }, "require-dev": { - "orchestra/testbench": "3.8.*", - "phpunit/phpunit": "^7.0" + "orchestra/testbench": "^3.5|^4.0|^5.0|^6.0", + "phpunit/phpunit": "^8.5" }, "autoload": { "psr-4": {