glassboxx-sdk-php/Makefile

10 lines
155 B
Makefile
Raw Normal View History

.PHONY: *
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