-
Notifications
You must be signed in to change notification settings - Fork 66
/
Makefile
50 lines (38 loc) · 1.35 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.DEFAULT_GOAL := help
help:
@echo ""
@echo "Available tasks:"
@echo " test Run all tests and generate coverage"
@echo " watch Run all tests and coverage when a source file is updated"
@echo " lint Run linter and code style checker"
@echo " lint-fix Fix linter and code style checker errors"
@echo " rector Do a Rector dry run"
@echo " rector-fix Apply Rector rules to the code"
@echo " unit Run unit tests and generate coverage"
@echo " static Run static analysis"
@echo " vendor Install dependencies"
@echo " clean Remove vendor and composer.lock"
@echo ""
vendor: $(wildcard composer.lock)
composer install --prefer-dist
lint: vendor
vendor/bin/phplint . --exclude=vendor/
vendor/bin/ecs check src tests
lint-fix: vendor
vendor/bin/ecs check src tests --fix
rector:
vendor/bin/rector --clear-cache --dry-run
rector-fix:
vendor/bin/rector --clear-cache
vendor/bin/ecs check src tests --fix
unit: vendor
phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml --coverage-html=./report/
static: vendor
vendor/bin/phpstan analyse src --level 8
watch: vendor
find . -name "*.php" -not -path "./vendor/*" -o -name "*.json" -not -path "./vendor/*" | entr -c make test
test: lint unit static
clean:
rm -rf vendor
rm composer.lock
.PHONY: help lint unit watch test clean