alex-5zi/hexlet-psr-linter

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
install:
    composer install

autoload:
    composer dump-autoload

lint:
    ./vendor/bin/phpcs --standard=PSR2 src tests
    ./bin/hexlet-psr-linter src

test:
    ./vendor/bin/phpunit tests

beauty:
    ./vendor/bin/phpcbf --standard=PSR2 src bin tests