We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c28119 commit 744c0b0Copy full SHA for 744c0b0
1 file changed
Makefile
@@ -45,7 +45,7 @@ help:
45
46
.PHONY: cs
47
cs: ## Fixes CS
48
-cs: php_cs_fixer gitignore_sort
+cs: php_cs_fixer gitignore_sort composer_normalize
49
50
.PHONY: php_cs_fixer
51
php_cs_fixer: ## Runs PHP-CS-Fixer
@@ -57,6 +57,11 @@ gitignore_sort: ## Sorts the .gitignore entries
57
gitignore_sort:
58
LC_ALL=C sort -u .gitignore -o .gitignore
59
60
+.PHONY: composer_normalize
61
+composer_normalize: ## Normalizes the composer.json
62
+composer_normalize: vendor
63
+ composer normalize
64
+
65
.PHONY: test
66
test: ## Runs all the tests
67
test: validate-package phpstan phpunit
0 commit comments