yavictor/php-project-lvl2

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
install:
    composer install

validate:
    composer validate

lint:
    composer exec --verbose phpcs -- --standard=PSR12 bin src tests

test:
    composer exec --verbose phpunit tests

test-coverage:
    composer exec --verbose phpunit tests -- --coverage-clover build/logs/clover.xml