From 8c7ebc5f819d1faa83c5e9590aa6615ce04d9640 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 16 Dec 2015 11:55:37 -0600 Subject: [PATCH] change order of scripts --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index d103cefd..03c6edb7 100644 --- a/composer.json +++ b/composer.json @@ -29,6 +29,12 @@ ] }, "scripts": { + "post-root-package-install": [ + "php -r \"copy('.env.example', '.env');\"" + ], + "post-create-project-cmd": [ + "php artisan key:generate" + ], "post-install-cmd": [ "php artisan clear-compiled", "php artisan optimize" @@ -38,12 +44,6 @@ ], "post-update-cmd": [ "php artisan optimize" - ], - "post-root-package-install": [ - "php -r \"copy('.env.example', '.env');\"" - ], - "post-create-project-cmd": [ - "php artisan key:generate" ] }, "config": {