Skip to content

Commit

Permalink
Merge pull request #11 from Laralabs/laravel-9-php-8-update
Browse files Browse the repository at this point in the history
PHP 8 & Laravel 9 Support
  • Loading branch information
clnt authored Feb 14, 2022
2 parents f475323 + fb47852 commit 818b3fc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [4.0.1] - 14-02-2022
### Changed
- Laravel 9 compatibility
- PHP 8 support
## [4.0.0] - 13-10-2020
### Changed
- Laravel 8.0 compatibility
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
],
"minimum-stability": "dev",
"require": {
"php": "^7.3",
"illuminate/support": "^5.4|^6.0|^7.0|^8.0",
"illuminate/database": "^5.4|^6.0|^7.0|^8.0",
"illuminate/contracts": "^5.4|^6.0|^7.0|^8.0",
"illuminate/session": "^5.4|^6.0|^7.0|^8.0"
"php": "^7.3|^8.0",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0",
"illuminate/database": "^5.5|^6.0|^7.0|^8.0|^9.0",
"illuminate/contracts": "^5.5|^6.0|^7.0|^8.0|^9.0",
"illuminate/session": "^5.5|^6.0|^7.0|^8.0|^9.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^3.4|^4.0|^5.0|^6.0",
"phpunit/phpunit": "^6.0|^7.0|^8.0"
"orchestra/testbench": "^3.4|^4.0|^5.0|^6.0|^7.0",
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 818b3fc

Please sign in to comment.