Skip to content

Commit

Permalink
Add support for Laravel 7 (#49)
Browse files Browse the repository at this point in the history
* Add support for Laravel 7
  • Loading branch information
glorand authored Mar 3, 2020
1 parent 68529d3 commit 4071a0d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `glorand/laravel-model-settings` will be documented in this file

## 3.6.0 - 2020-03-03

- add support for Laravel 7

## 3.5.5 - 2020-02-04
### Bugfix

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
],
"require": {
"php": ">=7.1.3",
"illuminate/config": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/console": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/filesystem": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/cache": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/config": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
"illuminate/console": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
"illuminate/filesystem": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
"illuminate/cache": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8.0",
"orchestra/testbench": "~3.8.0|^4.0",
"phpunit/phpunit": "^7.5|^8.0|^9.0",
"orchestra/testbench": "~3.8.0|^4.0|^5.0",
"friendsofphp/php-cs-fixer": "^2.16@dev",
"josiasmontag/laravel-redis-mock": "^1.2"
},
Expand Down

0 comments on commit 4071a0d

Please sign in to comment.