mirror of
https://github.com/opdavies/glassboxx-sdk-php.git
synced 2025-02-17 22:50:48 +00:00
19 lines
281 B
Makefile
19 lines
281 B
Makefile
PATH:=${PATH}:vendor/bin
|
|
|
|
.PHONY: *
|
|
|
|
static-code-analysis:
|
|
psalm --show-info=true
|
|
|
|
phpcs:
|
|
phpcs --standard=PSR2 src tests
|
|
|
|
phpunit:
|
|
echo ${PATH}
|
|
phpunit -v --color=always --testdox tests
|
|
|
|
test: phpunit phpcs
|
|
|
|
vendor: composer.json
|
|
composer validate --strict
|
|
composer install
|