Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.

Commit 59e9ec9

Browse files
localheinzondrejmirtes
authored andcommitted
Fix: Run 'composer normalize'
1 parent 3dbdc40 commit 59e9ec9

File tree

1 file changed

+24
-20
lines changed

1 file changed

+24
-20
lines changed

composer.json

Lines changed: 24 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,46 @@
11
{
22
"name": "phpstan/phpstan-php-parser",
3-
"description": "PHP-Parser extensions for PHPStan",
43
"type": "phpstan-extension",
5-
"license": ["MIT"],
6-
"minimum-stability": "dev",
7-
"prefer-stable": true,
8-
"extra": {
9-
"branch-alias": {
10-
"dev-master": "0.12-dev"
11-
},
12-
"phpstan": {
13-
"includes": [
14-
"extension.neon"
15-
]
16-
}
17-
},
4+
"description": "PHP-Parser extensions for PHPStan",
5+
"license": [
6+
"MIT"
7+
],
188
"require": {
199
"php": "~7.1",
20-
"phpstan/phpstan": "^0.12",
21-
"nikic/php-parser": "^4.0"
10+
"nikic/php-parser": "^4.0",
11+
"phpstan/phpstan": "^0.12"
2212
},
2313
"require-dev": {
2414
"consistence/coding-standard": "^3.0.1",
2515
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
16+
"ergebnis/composer-normalize": "^2.0.2",
2617
"jakub-onderka/php-parallel-lint": "^1.0",
2718
"phing/phing": "^2.16.0",
2819
"phpstan/phpstan-phpunit": "^0.12",
2920
"phpstan/phpstan-strict-rules": "^0.12",
3021
"phpunit/phpunit": "^7.0",
31-
"slevomat/coding-standard": "^4.5.2",
32-
"ergebnis/composer-normalize": "^2.0.2"
22+
"slevomat/coding-standard": "^4.5.2"
23+
},
24+
"extra": {
25+
"branch-alias": {
26+
"dev-master": "0.12-dev"
27+
},
28+
"phpstan": {
29+
"includes": [
30+
"extension.neon"
31+
]
32+
}
3333
},
3434
"autoload": {
3535
"psr-4": {
3636
"PHPStan\\": "src/"
3737
}
3838
},
3939
"autoload-dev": {
40-
"classmap": ["tests/"]
41-
}
40+
"classmap": [
41+
"tests/"
42+
]
43+
},
44+
"minimum-stability": "dev",
45+
"prefer-stable": true
4246
}

0 commit comments

Comments
 (0)