Commit 64bea7ca authored by Taylor Otwell's avatar Taylor Otwell Committed by GitHub

Merge pull request #4129 from laravel/revert-4126-patch-1

Revert "Append '@' to let composer resolve PHP executable"
parents 7a44ebef 095fa50f
...@@ -29,18 +29,18 @@ ...@@ -29,18 +29,18 @@
}, },
"scripts": { "scripts": {
"post-root-package-install": [ "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": [ "post-create-project-cmd": [
"@php artisan key:generate" "php artisan key:generate"
], ],
"post-install-cmd": [ "post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall", "Illuminate\\Foundation\\ComposerScripts::postInstall",
"@php artisan optimize" "php artisan optimize"
], ],
"post-update-cmd": [ "post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate", "Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan optimize" "php artisan optimize"
] ]
}, },
"config": { "config": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment