Skip to content

Commit

Permalink
Laravel 12 support (#1730)
Browse files Browse the repository at this point in the history
* Laravel 12 support

* Update run-tests.yml

* Update run-integration-tests.yml

* Allow testbench v10
  • Loading branch information
jonnott authored Feb 11, 2025
1 parent f6439aa commit 410f0c3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 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,8 +20,10 @@ jobs:
fail-fast: false
matrix:
php: [8.4, 8.3, 8.2, 8.1]
laravel: [11.*, 10.*]
laravel: [12.*, 11.*, 10.*]
exclude:
- laravel: 12.*
php: 8.1
- laravel: 11.*
php: 8.1
name: P${{ matrix.php }} - Laravel${{ matrix.laravel }}
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,9 +21,11 @@ jobs:
fail-fast: false
matrix:
php: [8.4, 8.3, 8.2, 8.1]
laravel: [^11, ^10]
laravel: [^12, ^11, ^10]
dependency-version: [prefer-stable]
exclude:
- laravel: ^12
php: 8.1
- laravel: ^11
php: 8.1

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

0 comments on commit 410f0c3

Please sign in to comment.