Skip to content

Commit 3a7a36f

Browse files
localheinzondrejmirtes
authored andcommitted
Fix: Run 'composer normalize'
1 parent 9cdd121 commit 3a7a36f

File tree

1 file changed

+39
-35
lines changed

1 file changed

+39
-35
lines changed

composer.json

Lines changed: 39 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,63 @@
11
{
22
"name": "phpstan/phpstan-nette",
3-
"description": "Nette Framework 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-
"rules.neon"
16-
]
17-
}
18-
},
4+
"description": "Nette Framework class reflection extension 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+
"nette/application": "<2.3.0",
15+
"nette/component-model": "<2.3.0",
16+
"nette/di": "<2.3.0",
17+
"nette/forms": "<2.3.0",
18+
"nette/http": "<2.3.0",
19+
"nette/utils": "<2.3.0"
2320
},
2421
"require-dev": {
2522
"consistence/coding-standard": "^3.0.1",
2623
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
24+
"ergebnis/composer-normalize": "^2.0.2",
2725
"jakub-onderka/php-parallel-lint": "^1.0",
26+
"nette/application": "^2.3.0 || ^3.0.0",
27+
"nette/component-model": "^2.3.0 || ^3.0.0",
28+
"nette/di": "^2.3.0 || ^3.0.0",
29+
"nette/forms": "^2.3.0 || ^3.0.0",
30+
"nette/http": "^2.3.0 || ^3.0.0",
31+
"nette/utils": "^2.3.0 || ^3.0.0",
2832
"phing/phing": "^2.13.0",
2933
"phpstan/phpstan-php-parser": "^0.12",
3034
"phpstan/phpstan-phpunit": "^0.12",
3135
"phpstan/phpstan-strict-rules": "^0.12",
3236
"phpunit/phpunit": "^7.0",
3337
"satooshi/php-coveralls": "^1.0",
34-
"slevomat/coding-standard": "^4.5.2",
35-
"nette/application": "^2.3.0 || ^3.0.0",
36-
"nette/component-model": "^2.3.0 || ^3.0.0",
37-
"nette/di": "^2.3.0 || ^3.0.0",
38-
"nette/forms": "^2.3.0 || ^3.0.0",
39-
"nette/utils": "^2.3.0 || ^3.0.0",
40-
"nette/http": "^2.3.0 || ^3.0.0",
41-
"ergebnis/composer-normalize": "^2.0.2"
38+
"slevomat/coding-standard": "^4.5.2"
4239
},
43-
"conflict": {
44-
"nette/application": "<2.3.0",
45-
"nette/component-model": "<2.3.0",
46-
"nette/di": "<2.3.0",
47-
"nette/forms": "<2.3.0",
48-
"nette/utils": "<2.3.0",
49-
"nette/http": "<2.3.0"
40+
"extra": {
41+
"branch-alias": {
42+
"dev-master": "0.12-dev"
43+
},
44+
"phpstan": {
45+
"includes": [
46+
"extension.neon",
47+
"rules.neon"
48+
]
49+
}
5050
},
5151
"autoload": {
5252
"psr-4": {
53-
"PHPStan\\": "src/"
53+
"PHPStan\\": "src/"
5454
}
5555
},
5656
"autoload-dev": {
57-
"classmap": ["tests/"]
58-
}
57+
"classmap": [
58+
"tests/"
59+
]
60+
},
61+
"minimum-stability": "dev",
62+
"prefer-stable": true
5963
}

0 commit comments

Comments
 (0)