2020-06-11 19:41:30 +00:00
|
|
|
PATH:=${PATH}:vendor/bin
|
|
|
|
|
2020-05-30 02:29:14 +00:00
|
|
|
.PHONY: *
|
|
|
|
|
2020-06-11 19:41:30 +00:00
|
|
|
static-code-analysis:
|
|
|
|
psalm --show-info=true
|
2020-06-05 20:09:58 +00:00
|
|
|
|
2020-05-30 11:51:37 +00:00
|
|
|
phpcs:
|
2020-06-11 19:41:30 +00:00
|
|
|
phpcs --standard=PSR2 src tests
|
2020-05-30 11:51:37 +00:00
|
|
|
|
2020-05-30 02:29:14 +00:00
|
|
|
phpunit:
|
2020-06-11 19:41:30 +00:00
|
|
|
echo ${PATH}
|
|
|
|
phpunit -v --color=always --testdox tests
|
2020-05-30 02:29:14 +00:00
|
|
|
|
2020-05-30 11:51:37 +00:00
|
|
|
test: phpunit phpcs
|
2020-06-05 21:09:51 +00:00
|
|
|
|
|
|
|
vendor: composer.json
|
|
|
|
composer validate --strict
|
|
|
|
composer install
|