analyze:
	./vendor/bin/phpstan --level=5 analyse src

test:
	./vendor/bin/phpunit -c tests/phpunit.xml tests

lint:
	./vendor/bin/phpcs --standard=PSR2 --bootstrap=src/bootstrap.php src/

fix:
	./vendor/bin/php-cs-fixer fix .

messdetect:
	./vendor/bin/phpmd . text ruleset.xml --exclude vendor,prepare,tests

integrations:
	php ./tests/integrations/transactions.php

PHONY: analyze test lint fix messdetect integrations
