glassboxx-sdk-php/Makefile

20 lines
281 B
Makefile
Raw Permalink Normal View History

2020-06-11 19:41:30 +00:00
PATH:=${PATH}:vendor/bin
.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
phpunit:
2020-06-11 19:41:30 +00:00
echo ${PATH}
phpunit -v --color=always --testdox tests
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