1 Star 0 Fork 0

南城/Faker

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 738 Bytes
一键复制 编辑 原始数据 按行查看 历史
.PHONY: build coverage fix help sniff test
help:
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
build: fix test ## Runs fix and test targets
coverage: vendor/autoload.php ## Collects coverage with phpunit
vendor/bin/phpunit --coverage-text --coverage-clover=.build/logs/clover.xml
fix: vendor/autoload.php ## Fixes code style issues with phpcbf
vendor/bin/phpcbf --standard=PSR2 src
sniff: vendor/autoload.php ## Detects code style issues with phpcs
vendor/bin/phpcs --standard=PSR2 src -n
test: vendor/autoload.php ## Runs tests with phpunit
vendor/bin/phpunit
vendor/autoload.php:
composer install --no-interaction --prefer-dist
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lazyfishman/Faker.git
git@gitee.com:lazyfishman/Faker.git
lazyfishman
Faker
Faker
master

搜索帮助