Skip to content

Commit de57095

Browse files
committed
build: add Laravel 11 support
1 parent 2687f23 commit de57095

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
php: [ '7.4', '8.0', '8.1', '8.2' ]
13-
laravel: [ '8.*', '9.*', '10.*' ]
13+
laravel: [ '8.*', '9.*', '10.*', '11.*' ]
1414
stability: [ prefer-lowest, prefer-stable ]
1515
exclude:
1616
- laravel: '8.*'
@@ -21,6 +21,12 @@ jobs:
2121
php: '7.4'
2222
- laravel: '10.*'
2323
php: '8.0'
24+
- laravel: '11.*'
25+
php: '7.4'
26+
- laravel: '11.*'
27+
php: '8.0'
28+
- laravel: '11.*'
29+
php: '8.1'
2430

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

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
],
2222
"require": {
2323
"php": "^8.0",
24-
"illuminate/encryption": "^8.0|^9.0|^10.0",
25-
"illuminate/support": "^8.0|^9.0|^10.0",
24+
"illuminate/encryption": "^8.0|^9.0|^10.0|^11.0",
25+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
2626
"league/flysystem": "^2.0|^3.0"
2727
},
2828
"require-dev": {
2929
"friendsofphp/php-cs-fixer": "^3.14",
3030
"league/flysystem-adapter-test-utilities": "^2.0|^3.0",
3131
"league/flysystem-memory": "^2.0|^3.0",
32-
"phpunit/phpunit": "^9.5"
32+
"phpunit/phpunit": "^9.5|^10.5"
3333
},
3434
"autoload": {
3535
"psr-4": {

0 commit comments

Comments
 (0)