Skip to content

Commit 9b60f17

Browse files
authored
chore: add support for Laravel 12 (#11)
* chore: add support for Laravel 12 * chore: update pest to v3 * ci: exclude laravel 10 and php 8.4
1 parent a77357f commit 9b60f17

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ jobs:
1515
strategy:
1616
fail-fast: true
1717
matrix:
18-
php: [ 8.2, 8.3 ]
19-
laravel: [ 10, 11 ]
18+
php: [ 8.2, 8.3, 8.4 ]
19+
laravel: [ 10, 11, 12 ]
20+
exclude:
21+
- php: 8.4
22+
laravel: 12
2023

2124
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2225

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
"require": {
1919
"php": "^8.2",
2020
"ext-mbstring": "*",
21-
"illuminate/contracts": "^10.0|^11.0",
22-
"illuminate/support": "^10.0|^11.0",
21+
"illuminate/contracts": "^10.0|^11.0|^12.0",
22+
"illuminate/support": "^10.0|^11.0|^12.0",
2323
"sqids/sqids": "^0.4.1"
2424
},
2525
"require-dev": {
2626
"laravel/pint": "^1.10",
27-
"orchestra/testbench": "^8.0|^9.0",
28-
"pestphp/pest": "^2.6",
29-
"pestphp/pest-plugin-arch": "^2.1",
27+
"orchestra/testbench": "^8.0|^9.0|^10.0",
28+
"pestphp/pest": "^3.0",
29+
"pestphp/pest-plugin-arch": "^3.0",
3030
"phpstan/phpstan": "^1.10",
3131
"red-explosion/pint-config": "^1.1",
3232
"spatie/laravel-ray": "^1.32"

0 commit comments

Comments
 (0)