Skip to content

Commit b7dcd53

Browse files
committed
build(deps): add support for Laravel 12
1 parent 8c370aa commit b7dcd53

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,20 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
php: [8.1, 8.2, 8.3]
13-
laravel: [10.*, 11.*]
13+
laravel: [10.*, 11.*, 12.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
exclude:
1616
- php: 8.1
1717
laravel: 11.*
18+
- php: 8.1
19+
laravel: 12.*
1820
include:
1921
- laravel: 10.*
2022
testbench: 8.*
2123
- laravel: 11.*
2224
testbench: 9.*
25+
- laravel: 12.*
26+
testbench: 10.*
2327

2428
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2529

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@
2424
],
2525
"require": {
2626
"php": "^8.1",
27-
"astrotomic/laravel-translatable": "^11.0",
28-
"illuminate/contracts": "^10.0|^11.0",
29-
"illuminate/support": "^10.0|^11.0",
30-
"illuminate/routing": "^10.0|^11.0",
31-
"illuminate/translation": "^10.0|^11.0"
27+
"astrotomic/laravel-translatable": "^11.0|^12.0",
28+
"illuminate/contracts": "^10.0|^11.0|^12.0",
29+
"illuminate/support": "^10.0|^11.0|^12.0",
30+
"illuminate/routing": "^10.0|^11.0|^12.0",
31+
"illuminate/translation": "^10.0|^11.0|^12.0"
3232
},
3333
"require-dev": {
3434
"laravel/pint": "^1.2",
3535
"mockery/mockery": "^1.4",
36-
"orchestra/testbench": "^8.0|^9.0",
36+
"orchestra/testbench": "^8.0|^9.0|^10.0",
3737
"phpunit/phpunit": "^10.5",
3838
"squizlabs/php_codesniffer": "^3.6"
3939
},

0 commit comments

Comments
 (0)