Skip to content

Commit 149ac44

Browse files
localheinzondrejmirtes
authored andcommitted
Fix: Run 'composer normalize'
1 parent 22a093f commit 149ac44

File tree

1 file changed

+27
-23
lines changed

1 file changed

+27
-23
lines changed

composer.json

Lines changed: 27 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,51 @@
11
{
22
"name": "phpstan/phpstan-dibi",
3-
"description": "Dibi class reflection extension 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": "Dibi class reflection extension 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"
12+
},
13+
"conflict": {
14+
"dibi/dibi": "<3.0"
2215
},
2316
"require-dev": {
2417
"consistence/coding-standard": "^3.0.1",
2518
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
19+
"dibi/dibi": "~3.0",
20+
"ergebnis/composer-normalize": "^2.0.2",
2621
"jakub-onderka/php-parallel-lint": "^1.0",
2722
"phing/phing": "^2.13.0",
2823
"phpstan/phpstan-phpunit": "^0.12",
2924
"phpstan/phpstan-strict-rules": "^0.12",
3025
"phpunit/phpunit": "^7.0",
3126
"satooshi/php-coveralls": "^1.0",
32-
"slevomat/coding-standard": "^4.5.2",
33-
"dibi/dibi": "~3.0",
34-
"ergebnis/composer-normalize": "^2.0.2"
27+
"slevomat/coding-standard": "^4.5.2"
3528
},
36-
"conflict": {
37-
"dibi/dibi": "<3.0"
29+
"extra": {
30+
"branch-alias": {
31+
"dev-master": "0.12-dev"
32+
},
33+
"phpstan": {
34+
"includes": [
35+
"extension.neon"
36+
]
37+
}
3838
},
3939
"autoload": {
4040
"psr-4": {
4141
"PHPStan\\": "src/"
4242
}
4343
},
4444
"autoload-dev": {
45-
"classmap": ["tests/"]
46-
}
45+
"classmap": [
46+
"tests/"
47+
]
48+
},
49+
"minimum-stability": "dev",
50+
"prefer-stable": true
4751
}

0 commit comments

Comments
 (0)