Browse Source

Revert "Append '@' to let composer resolve PHP executable"

Taylor Otwell 7 years ago
parent
commit
095fa50f7b
1 changed files with 4 additions and 4 deletions
  1. 4 4
      composer.json

+ 4 - 4
composer.json

@@ -29,18 +29,18 @@
     },
     "scripts": {
         "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": [
-            "@php artisan key:generate"
+            "php artisan key:generate"
         ],
         "post-install-cmd": [
             "Illuminate\\Foundation\\ComposerScripts::postInstall",
-            "@php artisan optimize"
+            "php artisan optimize"
         ],
         "post-update-cmd": [
             "Illuminate\\Foundation\\ComposerScripts::postUpdate",
-            "@php artisan optimize"
+            "php artisan optimize"
         ]
     },
     "config": {