Skip to content

Commit 0a9df8d

Browse files
committed
Add support for Laravel 12
1 parent 699d23e commit 0a9df8d

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,20 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [ 8.1, 8.2, 8.3, 8.4 ]
20-
illuminate: [ ^10.0, ^11.0 ]
20+
illuminate: [ ^10.0, ^11.0, ^12.0 ]
2121
stability: [ prefer-lowest, prefer-stable ]
2222
include:
2323
- illuminate: ^10.0
2424
testbench: 8.*
2525
- illuminate: ^11.0
2626
testbench: 9.*
27+
- illuminate: ^12.0
28+
testbench: 10.*
2729
exclude:
2830
- php: 8.1
2931
illuminate: ^11.0
30-
- php: 8.4
31-
illuminate: ^10.0
32+
- php: 8.1
33+
illuminate: ^12.0
3234

3335
name: P${{ matrix.php }} - I${{ matrix.illuminate }} - ${{ matrix.stability }}
3436

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## [Unreleased](https://github.com/markwalet/laravel-changelog/compare/v1.10.0...master)
44

55
### Added
6+
- Support Laravel 12
67
- Included PHP 8.4 in test matrix
78

89
## [v1.10.0 (2024-03-13)](https://github.com/markwalet/laravel-changelog/compare/v1.9.0...v1.10.0)

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
],
1212
"require": {
1313
"php": "8.*",
14-
"laravel/framework": "^10.0|^11.0",
14+
"laravel/framework": "^10.0|^11.0|^12.0",
1515
"markwalet/laravel-git-state": "~1.0",
1616
"ext-simplexml": "*",
1717
"ext-dom": "*"
1818
},
1919
"require-dev": {
20-
"phpunit/phpunit": "^10.5",
20+
"phpunit/phpunit": "^10.5|^11.0",
2121
"mockery/mockery": "~1.4",
22-
"orchestra/testbench": "8.*|9.*"
22+
"orchestra/testbench": "8.*|9.*|10.*"
2323
},
2424
"autoload": {
2525
"psr-4": {
@@ -34,6 +34,8 @@
3434
"config": {
3535
"sort-packages": true
3636
},
37+
"minimum-stability": "dev",
38+
"prefer-stable": true,
3739
"extra": {
3840
"laravel": {
3941
"providers": [

0 commit comments

Comments
 (0)