Skip to content

Commit

Permalink
Add back L9 (#1734)
Browse files Browse the repository at this point in the history
* Add back L9 support for now
  • Loading branch information
barryvdh authored Feb 17, 2025
1 parent 447c962 commit 67e1bbd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ jobs:
fail-fast: false
matrix:
php: [8.4, 8.3, 8.2, 8.1]
laravel: [12.*, 11.*, 10.*]
laravel: [12.*, 11.*, 10.*, 9.*]
exclude:
- laravel: 12.*
php: 8.1
- laravel: 11.*
php: 8.1
- laravel: 9.*
php: 8.4
name: P${{ matrix.php }} - Laravel${{ matrix.laravel }}
steps:
- name: Checkout code
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@ jobs:
fail-fast: false
matrix:
php: [8.4, 8.3, 8.2, 8.1]
laravel: [^12, ^11, ^10]
laravel: [^12, ^11, ^10, ^9]
dependency-version: [prefer-stable]
exclude:
- laravel: ^12
php: 8.1
- laravel: ^11
php: 8.1
- laravel: ^9
php: 8.4

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

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
"require": {
"php": "^8.1",
"php-debugbar/php-debugbar": "~2.1.1",
"illuminate/routing": "^10|^11|^12",
"illuminate/session": "^10|^11|^12",
"illuminate/support": "^10|^11|^12",
"illuminate/routing": "^9|^10|^11|^12",
"illuminate/session": "^9|^10|^11|^12",
"illuminate/support": "^9|^10|^11|^12",
"symfony/finder": "^6|^7"
},
"require-dev": {
"mockery/mockery": "^1.3.3",
"orchestra/testbench-dusk": "^8|^9|^10",
"phpunit/phpunit": "^10|^11",
"orchestra/testbench-dusk": "^7|^8|^9|^10",
"phpunit/phpunit": "^9.5.10|^10|^11",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
Expand Down

0 comments on commit 67e1bbd

Please sign in to comment.