Skip to content

Commit 7b42a8c

Browse files
committed
ci: correct test each version of laravel
1 parent ea35d1c commit 7b42a8c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/php.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
strategy:
1818
matrix:
1919
php_version: ['8.1', '8.2', '8.3']
20+
laravel_version: ['^9.0', '^10.0', '^11.0']
21+
exclude:
22+
- php_version: '8.1'
23+
laravel_version: '^11.0'
24+
2025

2126
steps:
2227
- uses: actions/checkout@v3

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"illuminate/support": "^9.0|^10.0|^11.0"
1717
},
1818
"require-dev": {
19-
"phpunit/phpunit": "^9.5|^10.0",
20-
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
19+
"phpunit/phpunit": "^9.0|^10.0",
20+
"orchestra/testbench": "^7.5|^8.0|^9.0|^10.0",
2121
"phpstan/phpstan": "^1.9.18"
2222
},
2323
"license": "MIT",

0 commit comments

Comments
 (0)