Skip to content

Commit

Permalink
Add help target to Makefile (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
markuspoerschke authored Apr 4, 2021
1 parent d27826a commit 7b75916
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ PSALM_FLAGS ?=
PHPUNIT_FLAGS ?=
INFECTION_FLAGS ?=

.PHONY: help
help:
@echo 'Available targets'
@echo ' clean Removes temporary build artifacts like'
@echo ' dependencies Installs composer dependencies'
@echo ' docs Builds the documentation website'
@echo ' fix Fixes composer.json and code style'
@echo ' fix-prettier Fix code style of non PHP files (not included in "fix" target)'
@echo ' test Execute all tests'

.PHONY: test
test: test-validate-composer test-code-style test-psalm test-phpunit test-examples test-composer-normalize test-phpmd test-infection

Expand Down

0 comments on commit 7b75916

Please sign in to comment.