From 926d8ecb8db5c2adeb8ec49d622404bf1bf990dd Mon Sep 17 00:00:00 2001 From: Dimitrios Karvounaris Date: Tue, 2 Jun 2020 17:11:30 +0200 Subject: [PATCH] Call binary as php sub process --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index f832fda5..af259d39 100644 --- a/composer.json +++ b/composer.json @@ -67,9 +67,9 @@ "lint": "rector process src && php-cs-fixer fix -v", "test:lint": "php-cs-fixer fix -v --dry-run && rector process src --dry-run", "test:types": "phpstan analyse --ansi", - "test:unit": "bin/pest --colors=always --exclude-group=integration", - "test:integration": "bin/pest --colors=always --group=integration", - "test:integration:snapshots": "REBUILD_SNAPSHOTS=true bin/pest --colors=always", + "test:unit": "php bin/pest --colors=always --exclude-group=integration", + "test:integration": "php bin/pest --colors=always --group=integration", + "test:integration:snapshots": "REBUILD_SNAPSHOTS=true php bin/pest --colors=always", "test": [ "@test:lint", "@test:types",