From 5941b5c07e46433ba8518813aea0d887d5fb86ce Mon Sep 17 00:00:00 2001 From: George Hertz Date: Tue, 18 Sep 2018 18:18:09 +0200 Subject: [PATCH] composer: Make sure PHP executable is being resolved by composer --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 66b1ca985a..2629208185 100644 --- a/composer.json +++ b/composer.json @@ -112,13 +112,13 @@ "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump" ], "post-update-cmd": [ - "php artisan firefly:upgrade-database", - "php artisan firefly:verify", - "php artisan firefly:instructions update", - "php artisan passport:install" + "@php artisan firefly:upgrade-database", + "@php artisan firefly:verify", + "@php artisan firefly:instructions update", + "@php artisan passport:install" ], "post-install-cmd": [ - "php artisan firefly:instructions install" + "@php artisan firefly:instructions install" ] }, "config": {