Skip to content

Commit 6421912

Browse files
localheinzondrejmirtes
authored andcommitted
Fix: Run 'composer normalize'
1 parent cfcfba3 commit 6421912

File tree

1 file changed

+25
-21
lines changed

1 file changed

+25
-21
lines changed

composer.json

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,47 @@
11
{
22
"name": "phpstan/phpstan-beberlei-assert",
3-
"description": "PHPStan beberlei/assert extension",
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": "PHPStan beberlei/assert extension",
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
"beberlei/assert": "^2.9.5",
2515
"consistence/coding-standard": "^3.0.1",
2616
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
17+
"ergebnis/composer-normalize": "^2.0.2",
2718
"jakub-onderka/php-parallel-lint": "^1.0",
2819
"phing/phing": "^2.16.0",
29-
"phpstan/phpstan-strict-rules": "^0.12",
3020
"phpstan/phpstan-phpunit": "^0.12",
21+
"phpstan/phpstan-strict-rules": "^0.12",
3122
"phpunit/phpunit": "^7.1.3",
32-
"slevomat/coding-standard": "^4.5.2",
33-
"ergebnis/composer-normalize": "^2.0.2"
23+
"slevomat/coding-standard": "^4.5.2"
24+
},
25+
"extra": {
26+
"branch-alias": {
27+
"dev-master": "0.12-dev"
28+
},
29+
"phpstan": {
30+
"includes": [
31+
"extension.neon"
32+
]
33+
}
3434
},
3535
"autoload": {
3636
"psr-4": {
3737
"PHPStan\\": "src/"
3838
}
3939
},
4040
"autoload-dev": {
41-
"classmap": ["tests/"]
42-
}
41+
"classmap": [
42+
"tests/"
43+
]
44+
},
45+
"minimum-stability": "dev",
46+
"prefer-stable": true
4347
}

0 commit comments

Comments
 (0)