This repository was archived by the owner on Sep 12, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
53 lines (36 loc) · 1.06 KB
/
Makefile
File metadata and controls
53 lines (36 loc) · 1.06 KB
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
51
52
53
all:
composer run-script qa-all --timeout=0
all-extended:
composer run-script qa-all-extended --timeout=0
ci:
composer run-script qa-ci --timeout=0
ci-extended:
composer run-script qa-ci-extended --timeout=0
ci-windows:
composer run-script qa-ci-windows --timeout=0
contrib:
composer run-script qa-contrib --timeout=0
cs:
composer cs
cs-fix:
composer cs-fix
infection:
composer infection
unit:
composer run-script unit --timeout=0
stan:
composer run-script stan --timeout=0
unit-coverage:
composer run-script unit-coverage --timeout=0
ci-coverage:
composer ci-coverage
make qa-unit:
./vendor/bin/phpunit --colors=always -c ./phpunit.xml.dist --coverage-text
make qa-mutation:
./vendor/bin/infection --ansi --min-msi=100 --min-covered-msi=100 --threads=$(nproc)
make qa-lint:
./vendor/bin/parallel-lint --exclude vendor .
make qa-phpstan:
./vendor/bin/phpstan analyse src tests --level max --ansi -c ./phpstan.neon
make qa-cs:
./vendor/bin/php-cs-fixer fix --config=.php_cs --ansi --dry-run --diff --verbose --allow-risky=yes --show-progress=estimating