Browse Source

change order of scripts

Taylor Otwell 8 years ago
parent
commit
8c7ebc5f81
1 changed files with 6 additions and 6 deletions
  1. 6 6
      composer.json

+ 6 - 6
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": {