Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.

Commit 7754d1f

Browse files
Laravel 12.x Compatibility (#30)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12 * Update composer.json * Update composer.json * Remove L11 and L12 * Update run-tests.yml --------- Co-authored-by: Ralph J. Smit <[email protected]>
1 parent 0b87143 commit 7754d1f

File tree

2 files changed

+8
-13
lines changed

2 files changed

+8
-13
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
os: [ubuntu-latest]
1717
php: [8.1, 8.2]
18-
laravel: ['8.*', '9.*', '10.*', '11.*']
18+
laravel: [8.*, 9.*, 10.*]
1919
stability: [prefer-lowest, prefer-stable]
2020
include:
2121
- laravel: 8.*
@@ -24,11 +24,6 @@ jobs:
2424
testbench: ^7.0
2525
- laravel: 10.*
2626
testbench: ^8.0
27-
- laravel: 11.*
28-
testbench: ^9.0
29-
exclude:
30-
- laravel: 11.*
31-
php: 8.1
3227

3328
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3429

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@
1818
"require": {
1919
"php": "^8.0",
2020
"filament/forms": "^2.17",
21-
"illuminate/contracts": "^8.73|^9.0|^10.0|^11.0",
22-
"livewire/livewire": "^2.11|^3.4",
23-
"orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
21+
"illuminate/contracts": "^8.73|^9.0|^10.0",
22+
"livewire/livewire": "^2.11",
23+
"orchestra/testbench": "^6.23|^7.0|^8.0",
2424
"ryangjchandler/blade-tabler-icons": "^1.1|^2.0",
2525
"spatie/laravel-package-tools": "^1.9.2",
2626
"usernotnull/tall-toasts": "^1.5",
2727
"nesbot/carbon": "^2.66|^3.0"
2828
},
2929
"require-dev": {
30-
"nunomaduro/collision": "^5.10|^6.0|^8.0",
31-
"nunomaduro/larastan": "^1.0|^2.0",
30+
"nunomaduro/collision": "^5.10|^6.0",
31+
"nunomaduro/larastan": "^1.0|^2.0|^3.0",
3232
"pestphp/pest": "^1.22|^2.34",
3333
"pestphp/pest-plugin-laravel": "^1.4.0|^2.3",
3434
"phpstan/extension-installer": "^1.1",
3535
"phpunit/phpunit": "^9.5|^10.5",
3636
"spatie/invade": "^1.0|^2.0",
37-
"spatie/laravel-ray": "^1.27"
37+
"spatie/laravel-ray": "^1.39"
3838
},
3939
"autoload": {
4040
"psr-4": {
@@ -46,7 +46,7 @@
4646
"RalphJSmit\\Tall\\Interactive\\Tests\\": "tests"
4747
}
4848
},
49-
"scripts": [],
49+
"scripts": {},
5050
"config": {
5151
"sort-packages": true,
5252
"allow-plugins": {

0 commit comments

Comments
 (0)