Skip to content

Commit 0bc529a

Browse files
authored
Merge pull request #6 from jakzal/tools-dir
Move tools to its own directory instead of using vendor/bin
2 parents 18852cf + fe5a275 commit 0bc529a

File tree

2 files changed

+24
-19
lines changed

2 files changed

+24
-19
lines changed

Makefile

+22-19
Original file line numberDiff line numberDiff line change
@@ -21,41 +21,44 @@ test: vendor cs deptrac phpunit infection
2121
test-min: update-min cs deptrac phpunit infection
2222
.PHONY: test-min
2323

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
2626
.PHONY: cs
2727

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
3030
.PHONY: cs-fix
3131

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
3434
.PHONY: deptrac
3535

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
3838
.PHONY: infection
3939

40-
phpunit: vendor/bin/phpunit
41-
vendor/bin/phpunit
40+
phpunit: tools/phpunit
41+
tools/phpunit
4242
.PHONY: phpunit
4343

44-
tools: vendor/bin/php-cs-fixer vendor/bin/deptrac vendor/bin/infection
44+
tools: tools/php-cs-fixer tools/deptrac tools/infection
4545
.PHONY: tools
4646

4747
vendor: install
4848

4949
vendor/bin/phpunit: install
5050

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
5353

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
5656

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
5959

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

tools/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

0 commit comments

Comments
 (0)