Skip to content

Commit c5b4e05

Browse files
committed
Enhancement: Normalize composer.json
1 parent 0e6e57b commit c5b4e05

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

composer.json

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
{
22
"name": "phpstan/phpstan-deprecation-rules",
33
"description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
4-
"license": ["MIT"],
5-
"minimum-stability": "dev",
6-
"prefer-stable": true,
7-
"extra": {
8-
"branch-alias": {
9-
"dev-master": "0.11-dev"
10-
}
11-
},
4+
"license": [
5+
"MIT"
6+
],
127
"require": {
138
"php": "~7.1",
149
"nikic/php-parser": "^4.0",
@@ -23,15 +18,24 @@
2318
"phpunit/phpunit": "^7.0",
2419
"slevomat/coding-standard": "^4.5.2"
2520
},
21+
"config": {
22+
"sort-packages": true
23+
},
24+
"extra": {
25+
"branch-alias": {
26+
"dev-master": "0.11-dev"
27+
}
28+
},
2629
"autoload": {
2730
"psr-4": {
2831
"PHPStan\\": "src/"
2932
}
3033
},
3134
"autoload-dev": {
32-
"classmap": ["tests/"]
35+
"classmap": [
36+
"tests/"
37+
]
3338
},
34-
"config": {
35-
"sort-packages": true
36-
}
39+
"minimum-stability": "dev",
40+
"prefer-stable": true
3741
}

0 commit comments

Comments
 (0)