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

15 lines
300 B
Makefile
Raw Normal View History

vendor/autoload.php:
composer install --no-interaction --prefer-dist
.PHONY: fix
fix: vendor/autoload.php
vendor/bin/phpcbf --standard=PSR2 src
.PHONY: sniff
sniff: vendor/autoload.php
vendor/bin/phpcs --standard=PSR2 src -n
.PHONY: test
test: vendor/autoload.php
2014-07-28 14:42:55 +01:00
vendor/bin/phpunit --verbose