Skip to content

Commit 0c27fc5

Browse files
committed
🔧 support laravel 11
1 parent 30e2d42 commit 0c27fc5

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

‎.github/workflows/test.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
laravel: [10]
11+
laravel: [10, 11]
1212
php: [8.1, 8.2, 8.3]
13+
exclude:
14+
- php: 8.1
15+
laravel: 11
1316

1417
steps:
15-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1619

1720
- name: test against Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }}
1821
run: docker build . --build-arg PHP_VERSION=${{ matrix.php }} --build-arg LARAVEL=${{ matrix.laravel }}

‎composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
],
99
"require": {
1010
"php": "^8.0",
11-
"illuminate/session": "^8.0 || ^9.0 || ^10.0",
12-
"illuminate/support": "^8.0 || ^9.0 || ^10.0"
11+
"illuminate/session": "^8.0 || ^9.0 || ^10.0 || ^11.0",
12+
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0"
1313
},
1414
"require-dev": {
15-
"orchestra/testbench": "^8.0",
15+
"orchestra/testbench": "^8.0 || ^9.0",
1616
"php-parallel-lint/php-parallel-lint": "^1.3",
1717
"phpstan/phpstan": "^1",
1818
"phpunit/phpunit": "^10.0",

0 commit comments

Comments
 (0)