Skip to content

Commit 09ddb47

Browse files
localheinzondrejmirtes
authored andcommitted
Fix: Run 'composer normalize'
1 parent d02c609 commit 09ddb47

File tree

1 file changed

+38
-34
lines changed

1 file changed

+38
-34
lines changed

composer.json

Lines changed: 38 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,63 @@
11
{
22
"name": "phpstan/phpstan-doctrine",
3-
"description": "Doctrine 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-
"rules.neon"
16-
]
17-
}
18-
},
4+
"description": "Doctrine extensions for PHPStan",
5+
"license": [
6+
"MIT"
7+
],
198
"require": {
209
"php": "~7.1",
21-
"phpstan/phpstan": "^0.12.3",
22-
"nikic/php-parser": "^4.0"
10+
"nikic/php-parser": "^4.0",
11+
"phpstan/phpstan": "^0.12.3"
12+
},
13+
"conflict": {
14+
"doctrine/collections": "<1.0",
15+
"doctrine/common": "<2.7",
16+
"doctrine/mongodb-odm": "<1.2",
17+
"doctrine/orm": "<2.5"
2318
},
2419
"require-dev": {
2520
"consistence/coding-standard": "^3.0.1",
2621
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
22+
"doctrine/collections": "^1.0",
23+
"doctrine/common": "^2.7",
24+
"doctrine/mongodb-odm": "^1.2",
25+
"doctrine/orm": "^2.5",
26+
"ergebnis/composer-normalize": "^2.0.2",
2727
"jakub-onderka/php-parallel-lint": "^1.0",
2828
"phing/phing": "^2.16.0",
2929
"phpstan/phpstan-phpunit": "^0.12",
3030
"phpstan/phpstan-strict-rules": "^0.12",
3131
"phpunit/phpunit": "^7.0",
3232
"ramsey/uuid-doctrine": "^1.5.0",
33-
"slevomat/coding-standard": "^4.5.2",
34-
"doctrine/common": "^2.7",
35-
"doctrine/orm": "^2.5",
36-
"doctrine/collections": "^1.0",
37-
"doctrine/mongodb-odm": "^1.2",
38-
"ergebnis/composer-normalize": "^2.0.2"
33+
"slevomat/coding-standard": "^4.5.2"
3934
},
40-
"conflict": {
41-
"doctrine/common": "<2.7",
42-
"doctrine/orm": "<2.5",
43-
"doctrine/collections": "<1.0",
44-
"doctrine/mongodb-odm": "<1.2"
35+
"config": {
36+
"platform": {
37+
"ext-mongo": "1.6.16"
38+
}
39+
},
40+
"extra": {
41+
"branch-alias": {
42+
"dev-master": "0.12-dev"
43+
},
44+
"phpstan": {
45+
"includes": [
46+
"extension.neon",
47+
"rules.neon"
48+
]
49+
}
4550
},
4651
"autoload": {
4752
"psr-4": {
4853
"PHPStan\\": "src/"
4954
}
5055
},
5156
"autoload-dev": {
52-
"classmap": ["tests/"]
57+
"classmap": [
58+
"tests/"
59+
]
5360
},
54-
"config": {
55-
"platform": {
56-
"ext-mongo": "1.6.16"
57-
}
58-
}
61+
"minimum-stability": "dev",
62+
"prefer-stable": true
5963
}

0 commit comments

Comments
 (0)