Skip to content

Commit 67e1bbd

Browse files
authored
Add back L9 (#1734)
* Add back L9 support for now
1 parent 447c962 commit 67e1bbd

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

Diff for: .github/workflows/run-integration-tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
php: [8.4, 8.3, 8.2, 8.1]
23-
laravel: [12.*, 11.*, 10.*]
23+
laravel: [12.*, 11.*, 10.*, 9.*]
2424
exclude:
2525
- laravel: 12.*
2626
php: 8.1
2727
- laravel: 11.*
2828
php: 8.1
29+
- laravel: 9.*
30+
php: 8.4
2931
name: P${{ matrix.php }} - Laravel${{ matrix.laravel }}
3032
steps:
3133
- name: Checkout code

Diff for: .github/workflows/run-tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,15 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
php: [8.4, 8.3, 8.2, 8.1]
24-
laravel: [^12, ^11, ^10]
24+
laravel: [^12, ^11, ^10, ^9]
2525
dependency-version: [prefer-stable]
2626
exclude:
2727
- laravel: ^12
2828
php: 8.1
2929
- laravel: ^11
3030
php: 8.1
31+
- laravel: ^9
32+
php: 8.4
3133

3234
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3335

Diff for: composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
"require": {
2020
"php": "^8.1",
2121
"php-debugbar/php-debugbar": "~2.1.1",
22-
"illuminate/routing": "^10|^11|^12",
23-
"illuminate/session": "^10|^11|^12",
24-
"illuminate/support": "^10|^11|^12",
22+
"illuminate/routing": "^9|^10|^11|^12",
23+
"illuminate/session": "^9|^10|^11|^12",
24+
"illuminate/support": "^9|^10|^11|^12",
2525
"symfony/finder": "^6|^7"
2626
},
2727
"require-dev": {
2828
"mockery/mockery": "^1.3.3",
29-
"orchestra/testbench-dusk": "^8|^9|^10",
30-
"phpunit/phpunit": "^10|^11",
29+
"orchestra/testbench-dusk": "^7|^8|^9|^10",
30+
"phpunit/phpunit": "^9.5.10|^10|^11",
3131
"squizlabs/php_codesniffer": "^3.5"
3232
},
3333
"autoload": {

0 commit comments

Comments
 (0)