glassboxx-sdk-php/Makefile
2020-05-30 12:56:34 +01:00

10 lines
155 B
Makefile

.PHONY: *
phpcs:
php vendor/bin/phpcs --standard=PSR2 src tests
phpunit:
php vendor/bin/phpunit -v --color=always --testdox tests
test: phpunit phpcs