Skip to content

Commit dbd1664

Browse files
committed
- Adding Laravel 13 support
1 parent e66de39 commit dbd1664

2 files changed

Lines changed: 15 additions & 8 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,17 @@ jobs:
1717
matrix:
1818
os: [ ubuntu-latest ]
1919
php: [ 8.4, 8.3, 8.2, 8.1 ]
20-
laravel: [ 12.*, 11.*, 10.*, 9.* ]
20+
laravel: [ 13.*, 12.*, 11.*, 10.*, 9.* ]
2121
stability: [ prefer-lowest, prefer-stable ]
2222
include:
23+
- laravel: 13.*
24+
testbench: 11.*
25+
carbon: ^3.8.4
2326
- laravel: 12.*
2427
testbench: 10.*
2528
carbon: ^3.8.4
2629
- laravel: 11.*
27-
testbench: 9.*
30+
testbench: ^9.16
2831
carbon: ^2.63
2932
- laravel: 10.*
3033
testbench: 8.*
@@ -33,6 +36,10 @@ jobs:
3336
testbench: 7.*
3437
carbon: ^2.63
3538
exclude:
39+
- laravel: 13.*
40+
php: 8.2
41+
- laravel: 13.*
42+
php: 8.1
3643
- laravel: 12.*
3744
php: 8.1
3845
- laravel: 11.*

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
],
1212
"require": {
1313
"php": "^8.1",
14-
"illuminate/support": "^9.0 || ^10.0 || ^11.0 || ^12.0",
15-
"symfony/process": "^6.0 || ^7.0",
14+
"illuminate/support": "^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
15+
"symfony/process": "^6.0 || ^7.0 || ^8.0",
1616
"doctrine/dbal": "^3.6 || ^4.0",
17-
"javaabu/generator-helpers": "^1.2"
17+
"javaabu/generator-helpers": "^1.3"
1818
},
1919
"require-dev": {
20-
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0 || ^10.0",
21-
"phpunit/phpunit": "^9.5 || ^10.5 || ^11.5.3",
22-
"javaabu/schema": "^1.1"
20+
"orchestra/testbench": "^7.0 || ^8.0 || ^9.16 || ^10.0 || ^11.0",
21+
"phpunit/phpunit": "^9.5 || ^10.5 || ^11.5.3 || ^12.5.8 || ^13.0.3",
22+
"javaabu/schema": "^1.2"
2323
},
2424
"autoload": {
2525
"psr-4": {

0 commit comments

Comments
 (0)