1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-17 14:00:00 +01:00
Faker/Makefile

16 lines
308 B
Makefile

.PHONY: build fix sniff test
build: fix test
fix: vendor/autoload.php
vendor/bin/phpcbf --standard=PSR2 src
sniff: vendor/autoload.php
vendor/bin/phpcs --standard=PSR2 src -n
test: vendor/autoload.php
vendor/bin/phpunit --verbose
vendor/autoload.php:
composer install --no-interaction --prefer-dist