Skip to content

Commit 6a2c0b0

Browse files
mfnspawnia
authored andcommitted
Add support for Laravel 12
1 parent 515e5a3 commit 6a2c0b0

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

.github/workflows/continuous-integration.yml

+11
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
- "^9"
5151
- "^10"
5252
- "^11"
53+
- "^12"
5354
exclude:
5455
- php-version: "7.2"
5556
laravel-version: "^8"
@@ -59,18 +60,24 @@ jobs:
5960
laravel-version: "^10"
6061
- php-version: "7.2"
6162
laravel-version: "^11"
63+
- php-version: "7.2"
64+
laravel-version: "^12"
6265
- php-version: "7.3"
6366
laravel-version: "^9"
6467
- php-version: "7.3"
6568
laravel-version: "^10"
6669
- php-version: "7.3"
6770
laravel-version: "^11"
71+
- php-version: "7.3"
72+
laravel-version: "^12"
6873
- php-version: "7.4"
6974
laravel-version: "^9"
7075
- php-version: "7.4"
7176
laravel-version: "^10"
7277
- php-version: "7.4"
7378
laravel-version: "^11"
79+
- php-version: "7.4"
80+
laravel-version: "^12"
7481
- php-version: "8.0"
7582
laravel-version: "5.6.*"
7683
- php-version: "8.0"
@@ -81,6 +88,8 @@ jobs:
8188
laravel-version: "^10"
8289
- php-version: "8.0"
8390
laravel-version: "^11"
91+
- php-version: "8.0"
92+
laravel-version: "^12"
8493
- php-version: "8.1"
8594
laravel-version: "5.6.*"
8695
- php-version: "8.1"
@@ -93,6 +102,8 @@ jobs:
93102
laravel-version: "^7"
94103
- php-version: "8.1"
95104
laravel-version: "^11"
105+
- php-version: "8.1"
106+
laravel-version: "^12"
96107
- php-version: "8.2"
97108
laravel-version: "5.6.*"
98109
- php-version: "8.2"

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## Unreleased
1111

12+
### Added
13+
14+
- Support Laravel 12 https://github.com/laragraph/utils/pull/20
15+
1216
## v2.1.0
1317

1418
### Added

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@
1616
},
1717
"require": {
1818
"php": "^7.2 || ^8",
19-
"illuminate/contracts": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11",
20-
"illuminate/http": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11",
19+
"illuminate/contracts": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12",
20+
"illuminate/http": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12",
2121
"thecodingmachine/safe": "^1.1 || ^2",
2222
"webonyx/graphql-php": "^0.13.2 || ^14 || ^15"
2323
},
2424
"require-dev": {
2525
"ergebnis/composer-normalize": "^2.11",
2626
"jangregor/phpstan-prophecy": "^1",
2727
"mll-lab/php-cs-fixer-config": "^4",
28-
"orchestra/testbench": "~3.6.0 || ~3.7.0 || ~3.8.0 || ~3.9.0 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 || ^9.x-dev",
28+
"orchestra/testbench": "~3.6.0 || ~3.7.0 || ~3.8.0 || ~3.9.0 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 || ^10 || ^10.x-dev",
2929
"phpstan/extension-installer": "^1",
3030
"phpstan/phpstan": "^1",
3131
"phpstan/phpstan-deprecation-rules": "^1",
3232
"phpstan/phpstan-phpunit": "^1",
3333
"phpstan/phpstan-strict-rules": "^1",
34-
"phpunit/phpunit": "^7.5 || ^8.5 || ^9 || ^10.5",
34+
"phpunit/phpunit": "^7.5 || ^8.5 || ^9 || ^10.5 || ^11",
3535
"thecodingmachine/phpstan-safe-rule": "^1.1"
3636
},
3737
"minimum-stability": "dev",

0 commit comments

Comments
 (0)