mirror of
https://github.com/opdavies/glassboxx-sdk-php.git
synced 2025-01-23 04:27:32 +00:00
20 lines
281 B
Makefile
20 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
|