Skip to content

Commit e1bbb3f

Browse files
authored
ADD: Laravel 12 compatibility
ADD: Laravel 12 compatibility
2 parents c923a5c + c27ede9 commit e1bbb3f

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ ubuntu-latest ]
16-
php: [ 8.3, 8.2, 8.1 ]
17-
laravel: [ 10.*, 11.* ]
16+
php: [ 8.4, 8.3, 8.2, 8.1 ]
17+
laravel: [ 12.*, 11.*, 10.* ]
1818
stability: [ prefer-stable ]
1919
include:
20+
- laravel: 12.*
21+
testbench: 10.*
22+
carbon: ^3.8.4
2023
- laravel: 11.*
2124
testbench: 9.*
2225
carbon: 3.*
@@ -26,6 +29,8 @@ jobs:
2629
exclude:
2730
- laravel: 11.*
2831
php: 8.1
32+
- laravel: 12.*
33+
php: 8.1
2934
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3035
steps:
3136
- name: Checkout code

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^8.1|^8.2|^8.3",
22-
"laravel/framework": "^10.0|^11.0",
21+
"php": "^8.1|^8.2|^8.3|^8.4",
22+
"laravel/framework": "^10.0|^11.0|^12.0",
2323
"ronanguilloux/isocodes": "^2.3.5"
2424
},
2525
"autoload": {
@@ -34,9 +34,9 @@
3434
},
3535
"require-dev": {
3636
"mockery/mockery": "^1.2",
37-
"orchestra/testbench": "^9.5",
37+
"orchestra/testbench": "^8.0|^9.5|^10.0",
3838
"phpstan/extension-installer": "^1.4",
39-
"phpunit/phpunit": "^10.5|^11.0"
39+
"phpunit/phpunit": "^10.5|^11.0|^12.0"
4040
},
4141
"extra": {
4242
"laravel": {

0 commit comments

Comments
 (0)