Skip to content

Commit c662bc7

Browse files
authored
Merge pull request #99 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 0cdb605 + cbffb03 commit c662bc7

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
1515
php: [8.1, 8.2, 8.3]
16-
laravel: ['10.*', '11.*']
16+
laravel: ['10.*', '11.*', '12.*']
1717
stability: [prefer-stable]
1818
exclude:
1919
- laravel: 11.*
2020
php: 8.1
21+
- laravel: 12.*
22+
php: 8.1
2123

2224
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2325

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"symfony/workflow": "^6.0|^7.0",
1515
"symfony/process": "^6.0|^7.0",
1616
"symfony/event-dispatcher-contracts": "^2.4|^3.0",
17-
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
18-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
19-
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0"
17+
"illuminate/console": "^8.0|^9.0|^10.0|^11.0|^12.0",
18+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
19+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0"
2020
},
2121
"autoload": {
2222
"psr-4": {
@@ -43,10 +43,10 @@
4343
},
4444
"require-dev": {
4545
"mockery/mockery": "^1.2",
46-
"phpunit/phpunit": "^9.0|^10.5",
46+
"phpunit/phpunit": "^9.0|^10.5|^11.5.3",
4747
"symfony/var-dumper": "^6.0|^7.0",
4848
"fakerphp/faker": "^1.13|^1.9.1",
49-
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
50-
"symfony/contracts": "^2.3"
49+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
50+
"symfony/contracts": "^2.3|^3.5"
5151
}
5252
}

0 commit comments

Comments
 (0)