Skip to content

Commit 111e941

Browse files
authored
Merge pull request #12 from laravel-shift/l11-compatibility
Laravel 11.x Compatibility
2 parents 5da3cb5 + 6063372 commit 111e941

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

composer.json

+15-11
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,26 @@
22
"name": "skyronic/laravel-file-generator",
33
"description": "Laravel package to help you automate creation of files. Build your own custom generators like 'artisan make:model'.",
44
"type": "library",
5-
"keywords": ["laravel"],
5+
"keywords": [
6+
"laravel"
7+
],
68
"license": "MIT",
7-
"authors": [{
8-
"name": "Anirudh Sanjeev",
9-
"email": "[email protected]"
10-
}],
9+
"authors": [
10+
{
11+
"name": "Anirudh Sanjeev",
12+
"email": "[email protected]"
13+
}
14+
],
1115
"require": {
1216
"php": ">=8.1",
13-
"illuminate/support": "^8.0|^9.0|^10.0",
14-
"illuminate/console": "^8.0|^9.0|^10.0",
15-
"illuminate/view": "^8.0|^9.0|^10.0",
16-
"illuminate/filesystem": "^8.0|^9.0|^10.0",
17-
"symfony/finder": "^6.0"
17+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
18+
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
19+
"illuminate/view": "^8.0|^9.0|^10.0|^11.0",
20+
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
21+
"symfony/finder": "^6.0|^7.0"
1822
},
1923
"require-dev": {
20-
"phpunit/phpunit": "^9.0"
24+
"phpunit/phpunit": "^9.0|^10.5"
2125
},
2226
"autoload-dev": {
2327
"psr-4": {

0 commit comments

Comments
 (0)