Skip to content

Commit effc2f9

Browse files
committed
Fix missing composer normalizer plugin
1 parent 0f83afd commit effc2f9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ analyze: | vendor
1515

1616
fix-code: | vendor
1717
$(COMPOSER) install --optimize-autoloader --no-suggest --prefer-dist
18-
$(COMPOSER) exec -v composer-normalize
18+
$(COMPOSER) normalize
1919
$(COMPOSER) exec -v php-cs-fixer -- fix
2020
@#$(COMPOSER) exec -v psalm -- --alter --issues=all src
2121

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,18 @@
2121
"sgh/comparable": "^1.1"
2222
},
2323
"require-dev": {
24+
"ergebnis/composer-normalize": "^2.13",
2425
"friendsofphp/php-cs-fixer": "^2.16",
2526
"insolita/unused-scanner": "^2.2",
2627
"jakub-onderka/php-parallel-lint": "^1.0",
2728
"phan/phan": "^3.2",
2829
"phpmd/phpmd": "^2.9",
2930
"phpstan/phpstan": "^0.12.57",
31+
"phpunit/phpunit": "^9.5",
3032
"rskuipers/php-assumptions": "^0.8.0",
3133
"sebastian/phpcpd": "^6.0",
3234
"sensiolabs/security-checker": "^6.0",
33-
"vimeo/psalm": "^4.2",
34-
"phpunit/phpunit": "^9.5"
35+
"vimeo/psalm": "^4.2"
3536
},
3637
"autoload": {
3738
"psr-4": {

0 commit comments

Comments
 (0)