DmitriySmolin/php-project-48

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
install:
    composer install
validate:
    composer validate
lint:
    composer exec --verbose phpcs -- --standard=PSR12 src bin tests
lint-fix:
    composer exec --verbose phpcbf -- --standard=PSR12 src bin tests
test:
    composer exec --verbose phpunit tests
test-coverage:
    XDEBUG_MODE=coverage composer exec --verbose phpunit tests -- --coverage-clover build/logs/clover.xml