glassboxx-sdk-php/Makefile

13 lines
217 B
Makefile
Raw Normal View History

.PHONY: *
2020-06-05 20:09:58 +00:00
static-code-analysis:
php vendor/bin/psalm --show-info=true
2020-05-30 11:51:37 +00:00
phpcs:
php vendor/bin/phpcs --standard=PSR2 src tests
phpunit:
php vendor/bin/phpunit -v --color=always --testdox tests
2020-05-30 11:51:37 +00:00
test: phpunit phpcs