File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ it: coding-standards tests ## Runs all the targets
9
9
code-coverage : vendor # # Collects code coverage from running unit tests with phpunit/phpunit
10
10
vendor/bin/phpunit --configuration=tests/phpunit.xml --coverage-text --testsuite=unit
11
11
12
- .PHONY : help
13
- help : # # Displays this list of targets with descriptions
14
- @grep -E ' ^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | sort | awk ' BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
15
-
16
12
.PHONY : coding-standards
17
13
coding-standards : vendor # # Fixes code style issues with friendsofphp/php-cs-fixer
18
14
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --show-progress=dots --verbose
19
15
16
+ .PHONY : help
17
+ help : # # Displays this list of targets with descriptions
18
+ @grep -E ' ^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | sort | awk ' BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
19
+
20
20
.PHONY : tests
21
21
tests : vendor # # Runs unit and end-to-end tests with phpunit/phpunit
22
22
vendor/bin/phpunit --configuration=tests/phpunit.xml --testsuite=unit
You can’t perform that action at this time.
0 commit comments