Skip to content

Commit 998db6c

Browse files
authored
[1.x] Add Laravel 13 support (#489)
1 parent f7e462a commit 998db6c

File tree

2 files changed

+21
-17
lines changed

2 files changed

+21
-17
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,23 @@ jobs:
3434
fail-fast: true
3535
matrix:
3636
php: [8.1, 8.2, 8.3, 8.4]
37-
laravel: [10, 11, 12]
37+
laravel: [10, 11, 12, 13]
3838
livewire: [3, 4]
3939
stability: [prefer-lowest, prefer-stable]
4040
include:
4141
- php: 8.5
42-
laravel: 12
42+
laravel: 13
4343
livewire: 4
4444
stability: prefer-stable
4545
exclude:
4646
- php: 8.1
4747
laravel: 11
4848
- php: 8.1
4949
laravel: 12
50+
- php: 8.1
51+
laravel: 13
52+
- php: 8.2
53+
laravel: 13
5054
- php: 8.4
5155
laravel: 10
5256

composer.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,28 @@
2020
"php": "^8.1",
2121
"guzzlehttp/promises": "^1.0|^2.0",
2222
"doctrine/sql-formatter": "^1.4.1",
23-
"illuminate/auth": "^10.48.4|^11.0.8|^12.0",
24-
"illuminate/cache": "^10.48.4|^11.0.8|^12.0",
25-
"illuminate/config": "^10.48.4|^11.0.8|^12.0",
26-
"illuminate/console": "^10.48.4|^11.0.8|^12.0",
27-
"illuminate/contracts": "^10.48.4|^11.0.8|^12.0",
28-
"illuminate/database": "^10.48.4|^11.0.8|^12.0",
29-
"illuminate/events": "^10.48.4|^11.0.8|^12.0",
30-
"illuminate/http": "^10.48.4|^11.0.8|^12.0",
31-
"illuminate/queue": "^10.48.4|^11.0.8|^12.0",
32-
"illuminate/redis": "^10.48.4|^11.0.8|^12.0",
33-
"illuminate/routing": "^10.48.4|^11.0.8|^12.0",
34-
"illuminate/support": "^10.48.4|^11.0.8|^12.0",
35-
"illuminate/view": "^10.48.4|^11.0.8|^12.0",
23+
"illuminate/auth": "^10.48.4|^11.0.8|^12.0|^13.0",
24+
"illuminate/cache": "^10.48.4|^11.0.8|^12.0|^13.0",
25+
"illuminate/config": "^10.48.4|^11.0.8|^12.0|^13.0",
26+
"illuminate/console": "^10.48.4|^11.0.8|^12.0|^13.0",
27+
"illuminate/contracts": "^10.48.4|^11.0.8|^12.0|^13.0",
28+
"illuminate/database": "^10.48.4|^11.0.8|^12.0|^13.0",
29+
"illuminate/events": "^10.48.4|^11.0.8|^12.0|^13.0",
30+
"illuminate/http": "^10.48.4|^11.0.8|^12.0|^13.0",
31+
"illuminate/queue": "^10.48.4|^11.0.8|^12.0|^13.0",
32+
"illuminate/redis": "^10.48.4|^11.0.8|^12.0|^13.0",
33+
"illuminate/routing": "^10.48.4|^11.0.8|^12.0|^13.0",
34+
"illuminate/support": "^10.48.4|^11.0.8|^12.0|^13.0",
35+
"illuminate/view": "^10.48.4|^11.0.8|^12.0|^13.0",
3636
"laravel/sentinel": "^1.0",
3737
"livewire/livewire": "^3.6.4|^4.0",
38-
"symfony/console": "^6.0|^7.0",
38+
"symfony/console": "^6.0|^7.0|^8.0",
3939
"nesbot/carbon": "^2.67|^3.0"
4040
},
4141
"require-dev": {
4242
"guzzlehttp/guzzle": "^7.7",
4343
"mockery/mockery": "^1.0",
44-
"orchestra/testbench": "^8.36|^9.15|^10.8",
44+
"orchestra/testbench": "^8.36|^9.15|^10.8|^11.0",
4545
"pestphp/pest": "^2.0|^3.0|^4.0",
4646
"pestphp/pest-plugin-laravel": "^2.2|^3.0|^4.0",
4747
"phpstan/phpstan": "^1.12.21",

0 commit comments

Comments
 (0)