Skip to content

Commit 98a1f70

Browse files
localheinzondrejmirtes
authored andcommitted
Fix: Run 'composer normalize'
1 parent 668b179 commit 98a1f70

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,45 +1,49 @@
11
{
22
"name": "phpstan/phpstan-mockery",
3-
"description": "PHPStan Mockery 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 Mockery extension",
5+
"license": [
6+
"MIT"
7+
],
188
"require": {
199
"php": "~7.1",
20-
"phpstan/phpstan": "^0.12",
10+
"nikic/php-parser": "^4.3",
2111
"phpstan/phpdoc-parser": "^0.4",
22-
"nikic/php-parser": "^4.3"
12+
"phpstan/phpstan": "^0.12"
2313
},
2414
"require-dev": {
2515
"consistence/coding-standard": "^3.5",
2616
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
17+
"ergebnis/composer-normalize": "^2.0.2",
2718
"jakub-onderka/php-parallel-lint": "^1.0",
2819
"mockery/mockery": "^1.2.4",
2920
"phing/phing": "^2.16.0",
30-
"phpstan/phpstan-strict-rules": "^0.12",
3121
"phpstan/phpstan-phpunit": "^0.12",
22+
"phpstan/phpstan-strict-rules": "^0.12",
3223
"phpunit/phpunit": "^7.2",
3324
"slevomat/coding-standard": "^4.7.2",
34-
"squizlabs/php_codesniffer": "^3.3.2",
35-
"ergebnis/composer-normalize": "^2.0.2"
25+
"squizlabs/php_codesniffer": "^3.3.2"
26+
},
27+
"extra": {
28+
"branch-alias": {
29+
"dev-master": "0.12-dev"
30+
},
31+
"phpstan": {
32+
"includes": [
33+
"extension.neon"
34+
]
35+
}
3636
},
3737
"autoload": {
3838
"psr-4": {
3939
"PHPStan\\": "src/"
4040
}
4141
},
4242
"autoload-dev": {
43-
"classmap": ["tests/"]
44-
}
43+
"classmap": [
44+
"tests/"
45+
]
46+
},
47+
"minimum-stability": "dev",
48+
"prefer-stable": true
4549
}

0 commit comments

Comments
 (0)