mirror of
https://github.com/opdavies/glassboxx-sdk-php.git
synced 2025-01-23 12:37:31 +00:00
17 lines
293 B
Makefile
17 lines
293 B
Makefile
.PHONY: *
|
|
|
|
static-code-analysis: vendor
|
|
php vendor/bin/psalm --show-info=true
|
|
|
|
phpcs:
|
|
php vendor/bin/phpcs --standard=PSR2 src tests
|
|
|
|
phpunit:
|
|
php vendor/bin/phpunit -v --color=always --testdox tests
|
|
|
|
test: phpunit phpcs
|
|
|
|
vendor: composer.json
|
|
composer validate --strict
|
|
composer install
|