Skip to content

Commit 47cf32c

Browse files
committedMar 13, 2024
🔧 support laravel 11
1 parent ee5a1f9 commit 47cf32c

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,12 +8,12 @@
88
],
99
"require": {
1010
"php": "^8.0",
11-
"illuminate/collections": "^8.0 || ^9.0 || ^10.0",
12-
"illuminate/support": "^8.0 || ^9.0 || ^10.0",
11+
"illuminate/collections": "^8.0 || ^9.0 || ^10.0 || ^11.0",
12+
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0",
1313
"omniphx/forrest": "^2.0"
1414
},
1515
"require-dev": {
16-
"orchestra/testbench": "^8.0",
16+
"orchestra/testbench": "^8.0 || ^9.0",
1717
"php-parallel-lint/php-parallel-lint": "^1.3",
1818
"phpstan/phpstan": "^1",
1919
"phpunit/phpunit": "^10.0",

0 commit comments

Comments
 (0)