Skip to content

Commit

Permalink
Add Laravel 9 support (#43)
Browse files Browse the repository at this point in the history
* Add Laravel 9 support

* Also drop PHP 7.3 and 7.4 support from the workflows

* Drop PHP ^7.3 constraint from the composer requirements

* Keep PHP 7 support
  • Loading branch information
johanvanhelden authored Apr 6, 2022
1 parent b59b465 commit 93a4098
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"illuminate/filesystem": "^7.0|^8.0",
"illuminate/support": "^7.0|^8.0",
"illuminate/view": "^7.0|^8.0"
"illuminate/filesystem": "^7.0|^8.0|^9.0",
"illuminate/support": "^7.0|^8.0|^9.0",
"illuminate/view": "^7.0|^8.0|^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.21"
"orchestra/testbench": "^6.21|^7.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 93a4098

Please sign in to comment.