Skip to content

Commit 0db9b67

Browse files
authored
Merge pull request #31 from sharafat/laravel-12-compatibility
Add Laravel 12+ compatibility
2 parents afc8cbd + 7fc99e6 commit 0db9b67

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^7.3|^8.0|^8.1|^8.2|^8.3",
24-
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
25-
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
26-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
23+
"php": "^7.3|^8.0",
24+
"illuminate/console": ">=8.0",
25+
"illuminate/contracts": ">=8.0",
26+
"illuminate/support": ">=8.0"
2727
},
2828
"autoload": {
2929
"psr-4": {
@@ -49,7 +49,7 @@
4949
"prefer-stable": true,
5050
"require-dev": {
5151
"laravel/sail": "^1.14",
52-
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
53-
"phpunit/phpunit": "^9.5|^10.0"
52+
"orchestra/testbench": ">=6.0",
53+
"phpunit/phpunit": ">=9.5"
5454
}
5555
}

0 commit comments

Comments
 (0)