Skip to content

Commit

Permalink
feat: laravel 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ksassnowski committed Mar 22, 2024
1 parent 2b9efb5 commit 6921a6c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,17 @@ jobs:
strategy:
matrix:
php: [8.1, 8.2, 8.3]
laravel: [10.*]
laravel: [10.*, 11.*]
dependency-version: [prefer-stable]
os: [ubuntu-latest]
include:
- laravel: 10.*
testbench: ^8.0
- laravel: 11.*
testbench: ^9.0
exclude:
- php: 8.1
laravel: 11.*

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"laravel/framework": "^10.0",
"roach-php/core": "^2.0 || ^3.0",
"laravel/framework": "^10.0 || ^11.0",
"roach-php/core": "^2.0 || ^3.0 || dev-main",
"spatie/laravel-package-tools": "^1.11"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15",
"ergebnis/php-cs-fixer-config": "^6.19",
"orchestra/testbench": "^7.0 || ^8.0",
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^10.4",
"roave/security-advisories": "dev-latest",
"spatie/phpunit-snapshot-assertions": "^5.0"
Expand Down

0 comments on commit 6921a6c

Please sign in to comment.