@@ -21,41 +21,44 @@ test: vendor cs deptrac phpunit infection
21
21
test-min : update-min cs deptrac phpunit infection
22
22
.PHONY : test-min
23
23
24
- cs : vendor/bin /php-cs-fixer
25
- vendor/bin /php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi fix
24
+ cs : tools /php-cs-fixer
25
+ tools /php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi fix
26
26
.PHONY : cs
27
27
28
- cs-fix : vendor/bin /php-cs-fixer
29
- vendor/bin /php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
28
+ cs-fix : tools /php-cs-fixer
29
+ tools /php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
30
30
.PHONY : cs-fix
31
31
32
- deptrac : vendor/bin /deptrac
33
- vendor/bin /deptrac --no-interaction --ansi --formatter-graphviz-display=0
32
+ deptrac : tools /deptrac
33
+ tools /deptrac --no-interaction --ansi --formatter-graphviz-display=0
34
34
.PHONY : deptrac
35
35
36
- infection : vendor/bin/ infection vendor/bin /infection.pubkey
37
- phpdbg -qrr ./vendor/bin /infection --no-interaction --formatter=progress --min-msi=91 --min-covered-msi=91 --only-covered --ansi
36
+ infection : tools/ infection tools /infection.pubkey
37
+ phpdbg -qrr ./tools /infection --no-interaction --formatter=progress --min-msi=91 --min-covered-msi=91 --only-covered --ansi
38
38
.PHONY : infection
39
39
40
- phpunit : vendor/bin /phpunit
41
- vendor/bin /phpunit
40
+ phpunit : tools /phpunit
41
+ tools /phpunit
42
42
.PHONY : phpunit
43
43
44
- tools : vendor/bin/ php-cs-fixer vendor/bin/ deptrac vendor/bin /infection
44
+ tools : tools/ php-cs-fixer tools/ deptrac tools /infection
45
45
.PHONY : tools
46
46
47
47
vendor : install
48
48
49
49
vendor/bin/phpunit : install
50
50
51
- vendor/bin/php-cs-fixer :
52
- curl -Ls http://cs.sensiolabs.org/download/php-cs-fixer-v2.phar -o vendor/bin/php-cs-fixer && chmod +x vendor/bin/php-cs-fixer
51
+ tools/phpunit : vendor/bin/phpunit
52
+ ln -sf ../ vendor/bin/phpunit tools/phpunit
53
53
54
- vendor/bin/deptrac :
55
- curl -Ls http://get .sensiolabs.de/deptrac .phar -o vendor/bin/deptrac && chmod +x vendor/bin/deptrac
54
+ tools/php-cs-fixer :
55
+ curl -Ls http://cs .sensiolabs.org/download/php-cs-fixer-v2 .phar -o tools/php-cs-fixer && chmod +x tools/php-cs-fixer
56
56
57
- vendor/bin/infection : vendor/bin/infection.pubkey
58
- curl -Ls https ://github.com/infection/infection/releases/download/0.8.1/infection .phar -o vendor/bin/infection && chmod +x vendor/bin/infection
57
+ tools/deptrac :
58
+ curl -Ls http ://get.sensiolabs.de/deptrac .phar -o tools/deptrac && chmod +x tools/deptrac
59
59
60
- vendor/bin/infection.pubkey :
61
- curl -Ls https://github.com/infection/infection/releases/download/0.8.1/infection.phar.pubkey -o vendor/bin/infection.pubkey
60
+ tools/infection : tools/infection.pubkey
61
+ curl -Ls https://github.com/infection/infection/releases/download/0.8.1/infection.phar -o tools/infection && chmod +x tools/infection
62
+
63
+ tools/infection.pubkey :
64
+ curl -Ls https://github.com/infection/infection/releases/download/0.8.1/infection.phar.pubkey -o tools/infection.pubkey
0 commit comments