Skip to content

Commit 17d5277

Browse files
localheinzondrejmirtes
authored andcommitted
Fix: Run 'composer normalize'
1 parent 2bec916 commit 17d5277

File tree

1 file changed

+28
-24
lines changed

1 file changed

+28
-24
lines changed

composer.json

Lines changed: 28 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,50 @@
11
{
22
"name": "phpstan/phpstan-phpunit",
3-
"description": "PHPUnit extensions and rules 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-
"rules.neon"
16-
]
17-
}
18-
},
4+
"description": "PHPUnit extensions and rules for PHPStan",
5+
"license": [
6+
"MIT"
7+
],
198
"require": {
209
"php": "~7.1",
21-
"phpstan/phpstan": "^0.12",
22-
"nikic/php-parser": "^4.0"
10+
"nikic/php-parser": "^4.0",
11+
"phpstan/phpstan": "^0.12"
12+
},
13+
"conflict": {
14+
"phpunit/phpunit": "<7.0"
2315
},
2416
"require-dev": {
2517
"consistence/coding-standard": "^3.5",
2618
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
19+
"ergebnis/composer-normalize": "^2.0.2",
2720
"jakub-onderka/php-parallel-lint": "^1.0",
2821
"phing/phing": "^2.16.0",
2922
"phpstan/phpstan-strict-rules": "^0.12",
30-
"satooshi/php-coveralls": "^1.0",
31-
"slevomat/coding-standard": "^4.7.2",
3223
"phpunit/phpunit": "^7.0",
33-
"ergebnis/composer-normalize": "^2.0.2"
24+
"satooshi/php-coveralls": "^1.0",
25+
"slevomat/coding-standard": "^4.7.2"
3426
},
35-
"conflict": {
36-
"phpunit/phpunit": "<7.0"
27+
"extra": {
28+
"branch-alias": {
29+
"dev-master": "0.12-dev"
30+
},
31+
"phpstan": {
32+
"includes": [
33+
"extension.neon",
34+
"rules.neon"
35+
]
36+
}
3737
},
3838
"autoload": {
3939
"psr-4": {
4040
"PHPStan\\": "src/"
4141
}
4242
},
4343
"autoload-dev": {
44-
"classmap": ["tests/"]
45-
}
44+
"classmap": [
45+
"tests/"
46+
]
47+
},
48+
"minimum-stability": "dev",
49+
"prefer-stable": true
4650
}

0 commit comments

Comments
 (0)