Skip to content

Commit b5d6114

Browse files
authored
Merge pull request #111 from Lomkit/feature/laravel-11
⬆️ laravel 11
2 parents cc1271c + 5c5f475 commit b5d6114

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/tests.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
php-version: [ '8.1', '8.2', '8.3' ]
18-
laravel-version: [ '^10.0' ]
18+
laravel-version: [ '^10.0', '^11.0' ]
1919
database: [ 'sqlite', 'mysql', 'pgsql' ]
20+
exclude:
21+
- php-version: '8.1'
22+
laravel-version: '^11.0'
2023

2124
name: Tests on PHP ${{ matrix.php-version }} with Laravel ${{ matrix.laravel-version }} and ${{ matrix.database }}
2225

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"require": {
1313
"php": "^8.0",
1414
"ext-json": "*",
15-
"laravel/framework": "^10.0"
15+
"laravel/framework": "^10.0|^11.0"
1616
},
1717
"require-dev": {
1818
"guzzlehttp/guzzle": "^6.0|^7.0",
19-
"orchestra/testbench": "^8.5",
20-
"phpunit/phpunit": "^8.0|^9.0|^10.0"
19+
"orchestra/testbench": "^8.5|^9.0",
20+
"phpunit/phpunit": "^8.0|^9.0|^10.0|^11.0"
2121
},
2222
"autoload": {
2323
"psr-4": {

0 commit comments

Comments
 (0)