Skip to content

Commit

Permalink
[2.x] Laravel 9 support (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
bensherred authored Jun 7, 2022
1 parent a083b6c commit e46fabe
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,17 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 7.3, 7.4, 8.0 ]
laravel: [ ^6.0, ^7.0, ^8.0 ]
php: [ 7.3, 7.4, 8.0, 8.1 ]
laravel: [ ^6.0, ^7.0, ^8.0, ^9.0 ]
exclude:
- php: 7.3
laravel: ^9.0
- php: 7.4
laravel: ^9.0
- php: 8.1
laravel: ^6.0
- php: 8.1
laravel: ^7.0

name: P${{ matrix.php }} - L${{ matrix.laravel }}

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"require": {
"php": "^7.3|^8.0",
"fakerphp/faker": "^1.9",
"illuminate/support": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
"laravel/socialite": "^5.0"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0|^6.0",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
"phpunit/phpunit": "^8.0|^9.3",
"squizlabs/php_codesniffer": "^3.5"
},
Expand Down

0 comments on commit e46fabe

Please sign in to comment.