Skip to content

Commit c5022f3

Browse files
authored
Merge pull request #5 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 93c23e8 + bf9d30b commit c5022f3

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest]
20-
laravel: [9.*, 10.*, 11.*]
20+
laravel: ['9.*', '10.*', '11.*', '12.*']
2121
php: [8.1, 8.2, 8.3]
2222
stability: [prefer-lowest, prefer-stable]
2323
exclude:
2424
- laravel: 11.*
2525
php: 8.1
26+
- laravel: 12.*
27+
php: 8.1
2628
include:
2729
- laravel: 9.*
2830
testbench: 7.*
@@ -35,6 +37,9 @@ jobs:
3537
testbench: 9.*
3638
phpunit: 11.*
3739
carbon: ^2.63
40+
- laravel: 12.*
41+
testbench: 10.*
42+
phpunit: '8.2'
3843

3944
steps:
4045
- name: Checkout code

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
"php": "^8.1",
2424
"composer/class-map-generator": "^1.0",
2525
"datomatic/enum-helper": "^2.0",
26-
"illuminate/translation": "^8.0|^9.0|^10.0|^11.0",
27-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
26+
"illuminate/translation": "^8.0|^9.0|^10.0|^11.0|^12.0",
27+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
2828
"laminas/laminas-code": "^4.0",
2929
"jawira/case-converter": "^3.5"
3030
},
3131
"require-dev": {
3232
"pestphp/pest": "^1.0|^2.0|^3.0",
33-
"orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
34-
"phpstan/phpstan": "^1.7",
33+
"orchestra/testbench": "^6.23|^7.0|^8.0|^9.0|^10.0",
34+
"phpstan/phpstan": "^1.7|^2.1",
3535
"friendsofphp/php-cs-fixer": "^3.8",
3636
"pestphp/pest-plugin-laravel": "^1.0|^2.0|^3.0",
3737
"laravel/pint": "^1.18",

0 commit comments

Comments
 (0)