File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed
Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -21,22 +21,24 @@ test: vendor cs phpunit
2121test-min : update-min cs phpunit
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- phpunit : vendor/bin /phpunit
33- vendor/bin /phpunit
32+ phpunit : tools /phpunit
33+ tools /phpunit
3434.PHONY : phpunit
3535
3636vendor : install
3737
3838vendor/bin/phpunit : install
3939
40- vendor/bin/php-cs-fixer :
41- 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
40+ tools/phpunit : vendor/bin/phpunit
41+ ln -sf ../ vendor/bin/phpunit tools/phpunit
4242
43+ tools/php-cs-fixer :
44+ curl -Ls http://cs.sensiolabs.org/download/php-cs-fixer-v2.phar -o tools/php-cs-fixer && chmod +x tools/php-cs-fixer
Original file line number Diff line number Diff line change 1+ *
2+ ! .gitignore
You can’t perform that action at this time.
0 commit comments