Skip to content

Commit a2e4029

Browse files
authored
Merge pull request #32 from eXolnet/feature/laravel12
build(deps): add support for Laravel 12
2 parents 161a9fa + 4c77afa commit a2e4029

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/tests.yml

+5-1
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@
2424
],
2525
"require": {
2626
"php": "^8.1",
27-
"laravel/framework": "^10.0|^11.0"
27+
"laravel/framework": "^10.0|^11.0|^12.0"
2828
},
2929
"require-dev": {
3030
"guzzlehttp/guzzle": "^7.0",
3131
"laravel/pint": "^1.2",
3232
"mockery/mockery": "^1.4",
33-
"orchestra/testbench": "^8.0|^9.0",
34-
"phpunit/phpunit": "^10.5",
33+
"orchestra/testbench": "^8.0|^9.0|^10.0",
34+
"phpunit/phpunit": "^10.5|^11.5.3",
3535
"squizlabs/php_codesniffer": "^3.6"
3636
},
3737
"autoload": {

0 commit comments

Comments
 (0)