Skip to content

Commit

Permalink
Laravel 10.x Compatibility (#618)
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift authored Feb 6, 2023
1 parent 38cc3f3 commit bf49c96
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,15 @@ jobs:

strategy:
matrix:
laravel: [6.*, 7.*, 8.*, 9.*]
laravel: [6.*, 7.*, 8.*, 9.*, 10.*]
php: [7.2, 7.3, 8.0, 8.1]
exclude:
- laravel: 10.*
php: 7.2
- laravel: 10.*
php: 7.3
- laravel: 10.*
php: 8.0
- laravel: 8.*
php: 7.2
- laravel: 9.*
Expand Down
18 changes: 10 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,21 @@
"psr-4": {
"Silber\\Bouncer\\Tests\\": "tests/"
},
"files": ["tests/helpers.php"]
"files": [
"tests/helpers.php"
]
},
"require": {
"php": "^7.2|^8.0",
"illuminate/auth": "^6.0|^7.0|^8.0|^9.0",
"illuminate/cache": "^6.0|^7.0|^8.0|^9.0",
"illuminate/container": "^6.0|^7.0|^8.0|^9.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
"illuminate/database": "^6.0|^7.0|^8.0|^9.0"
"illuminate/auth": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/cache": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/container": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"illuminate/console": "^6.0|^7.0|^8.0|^9.0",
"illuminate/events": "^6.0|^7.0|^8.0|^9.0",
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/events": "^6.0|^7.0|^8.0|^9.0|^10.0",
"larapack/dd": "^1.1",
"mockery/mockery": "^1.3.3",
"phpunit/phpunit": "^8.0|^9.0"
Expand Down

0 comments on commit bf49c96

Please sign in to comment.