change order of scripts

This commit is contained in:
Taylor Otwell 2015-12-16 11:55:37 -06:00
parent 638b261a68
commit 8c7ebc5f81
1 changed files with 6 additions and 6 deletions

View File

@ -29,6 +29,12 @@
] ]
}, },
"scripts": { "scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [ "post-install-cmd": [
"php artisan clear-compiled", "php artisan clear-compiled",
"php artisan optimize" "php artisan optimize"
@ -38,12 +44,6 @@
], ],
"post-update-cmd": [ "post-update-cmd": [
"php artisan optimize" "php artisan optimize"
],
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
] ]
}, },
"config": { "config": {