Skip to content

Commit 53b3c10

Browse files
authored
Merge pull request #19 from eXolnet/feature/laravel12
build(deps): add support for Laravel 12
2 parents 518df7c + 0127ee2 commit 53b3c10

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
],
1818
"require": {
1919
"php": "^8.1",
20-
"illuminate/console": "^10.0|^11.0",
21-
"illuminate/support": "^10.0|^11.0"
20+
"illuminate/console": "^10.0|^11.0|^12.0",
21+
"illuminate/support": "^10.0|^11.0|^12.0"
2222
},
2323
"require-dev": {
2424
"mockery/mockery": "^1.4",
25-
"orchestra/testbench": "^8.0|^9.0",
26-
"phpunit/phpunit": "^10.5",
25+
"orchestra/testbench": "^8.0|^9.0|^10.0",
26+
"phpunit/phpunit": "^10.5|^11.5.3",
2727
"squizlabs/php_codesniffer": "^3.6"
2828
},
2929
"autoload": {

0 commit comments

Comments
 (0)