From 8379a92a14bdbc961b04f2f9d2f8a57546c8132c Mon Sep 17 00:00:00 2001 From: Miguel Piedrafita Date: Thu, 25 May 2017 14:56:28 +0200 Subject: [PATCH] Use current PHP version instead of using PATH --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 3182bea7..a859a260 100644 --- a/composer.json +++ b/composer.json @@ -30,18 +30,18 @@ }, "scripts": { "post-root-package-install": [ - "php -r \"file_exists('.env') || copy('.env.example', '.env');\"" + "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" ], "post-create-project-cmd": [ - "php artisan key:generate" + "@php artisan key:generate" ], "post-install-cmd": [ "Illuminate\\Foundation\\ComposerScripts::postInstall", - "php artisan optimize" + "@php artisan optimize" ], "post-update-cmd": [ "Illuminate\\Foundation\\ComposerScripts::postUpdate", - "php artisan optimize" + "@php artisan optimize" ] }, "config": {