We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 869710a commit 9ef1ef7Copy full SHA for 9ef1ef7
Makefile
@@ -1,7 +1,6 @@
1
.PHONY: composer test
2
3
COMPOSER_ARGS=update --no-interaction --prefer-source
4
-PHPUNIT_ARGS=--process-isolation
5
6
composer:
7
@command -v composer >/dev/null 2>&1; \
@@ -15,12 +14,4 @@ composer:
15
14
fi
16
17
test: composer
18
- @command -v phpunit >/dev/null 2>&1; \
19
- if test $$? -eq 0; then \
20
- phpunit $(PHPUNIT_ARGS); \
21
- elif test -r phpunit.phar; then \
22
- php phpunit.phar $(PHPUNIT_ARGS); \
23
- else \
24
- echo >&2 "Cannot find phpunit; aborting."; \
25
- false; \
26
- fi
+ vendor/bin/phpunit
0 commit comments