From 87a1c45d24cd3235aefb64a9ca13c7a244a5a799 Mon Sep 17 00:00:00 2001 From: Piotr Konieczny Date: Tue, 24 Sep 2019 15:07:29 +0200 Subject: [PATCH] Fix composer scripts --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 8aabf5281..53a7b2bd5 100644 --- a/composer.json +++ b/composer.json @@ -68,9 +68,9 @@ "@phpcs", "@phpstan" ], - "phpunit": "php vendor/bin/phpunit", - "phpcs": "php vendor/bin/phpcs", - "phpstan": "php -d memory_limit=-1 vendor/bin/phpstan analyse Slim" + "phpunit": "phpunit", + "phpcs": "phpcs", + "phpstan": "phpstan analyse Slim --memory-limit=-1" }, "suggest": { "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",