Skip to content

Commit acb2df9

Browse files
mfnactions-user
authored andcommitted
normalize composer.json
1 parent 7052b4f commit acb2df9

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

composer.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "barryvdh/laravel-ide-helper",
33
"description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
4+
"license": "MIT",
45
"keywords": [
56
"laravel",
67
"autocomplete",
@@ -12,7 +13,6 @@
1213
"codeintel",
1314
"phpdoc"
1415
],
15-
"license": "MIT",
1616
"authors": [
1717
{
1818
"name": "Barry vd. Heuvel",
@@ -25,26 +25,38 @@
2525
"barryvdh/reflection-docblock": "^2.0.6",
2626
"composer/composer": "^1.10.23 || ^2.1.9",
2727
"doctrine/dbal": "^2.6 || ^3",
28-
"illuminate/console": "^8|^9",
29-
"illuminate/filesystem": "^8|^9",
30-
"illuminate/support": "^8|^9",
28+
"illuminate/console": "^8 || ^9",
29+
"illuminate/filesystem": "^8 || ^9",
30+
"illuminate/support": "^8 || ^9",
3131
"nikic/php-parser": "^4.7",
3232
"phpdocumentor/type-resolver": "^1.1.0"
3333
},
3434
"require-dev": {
3535
"ext-pdo_sqlite": "*",
3636
"friendsofphp/php-cs-fixer": "^2",
37-
"illuminate/config": "^8|^9",
38-
"illuminate/view": "^8|^9",
37+
"illuminate/config": "^8 || ^9",
38+
"illuminate/view": "^8 || ^9",
3939
"mockery/mockery": "^1.4",
40-
"orchestra/testbench": "^6|^7",
40+
"orchestra/testbench": "^6 || ^7",
4141
"phpunit/phpunit": "^8.5 || ^9",
4242
"spatie/phpunit-snapshot-assertions": "^3 || ^4",
4343
"vimeo/psalm": "^3.12"
4444
},
4545
"suggest": {
4646
"illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
4747
},
48+
"minimum-stability": "dev",
49+
"prefer-stable": true,
50+
"autoload": {
51+
"psr-4": {
52+
"Barryvdh\\LaravelIdeHelper\\": "src"
53+
}
54+
},
55+
"autoload-dev": {
56+
"psr-4": {
57+
"Barryvdh\\LaravelIdeHelper\\Tests\\": "tests"
58+
}
59+
},
4860
"config": {
4961
"sort-packages": true
5062
},
@@ -58,18 +70,6 @@
5870
]
5971
}
6072
},
61-
"autoload": {
62-
"psr-4": {
63-
"Barryvdh\\LaravelIdeHelper\\": "src"
64-
}
65-
},
66-
"autoload-dev": {
67-
"psr-4": {
68-
"Barryvdh\\LaravelIdeHelper\\Tests\\": "tests"
69-
}
70-
},
71-
"minimum-stability": "dev",
72-
"prefer-stable": true,
7373
"scripts": {
7474
"analyze": "psalm",
7575
"check-style": [

0 commit comments

Comments
 (0)