Skip to content

Commit

Permalink
Add support for Laravel 10.
Browse files Browse the repository at this point in the history
  • Loading branch information
ash-jc-allen committed Jan 11, 2023
1 parent 7fc5d96 commit 3488417
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/ci-phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,19 @@ jobs:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2]
laravel: [8.*]
laravel: [8.*, 9.*, 10.*]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
exclude:
- laravel: 10.*
php: 8.0
- laravel: 10.*
php: 8.1

name: PHP${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,19 @@ jobs:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2]
laravel: [8.*, 9.*]
laravel: [8.*, 9.*, 10.*]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
exclude:
- laravel: 10.*
php: 8.0
- laravel: 10.*
php: 8.1

name: PHP${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
"require": {
"php": "^8.0",
"nesbot/carbon": "~2.0",
"illuminate/container": "^8.0|^9.0",
"illuminate/database": "^8.0|^9.0",
"illuminate/container": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"jenssegers/agent": "^2.6",
"hashids/hashids": "^4.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^6.0|^7.0",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^8.2 || ^9.0",
"nunomaduro/larastan": "^0.7.12 || ^1.0.0"
},
Expand Down

0 comments on commit 3488417

Please sign in to comment.