Turns out composer doesn't allow STDIN

This commit is contained in:
Dane Everitt 2016-09-21 15:57:00 -04:00
parent 4068332fb9
commit 7044ef3c8e
1 changed files with 3 additions and 15 deletions

View File

@ -73,27 +73,15 @@
"php vendor/bin/homestead make --ip=192.168.10.32", "php vendor/bin/homestead make --ip=192.168.10.32",
"sed -i.bak 's/homestead.app/pterodactyl.local/g' Homestead.yaml", "sed -i.bak 's/homestead.app/pterodactyl.local/g' Homestead.yaml",
"rm Homestead.yaml.bak", "rm Homestead.yaml.bak",
"php artisan key:generate", "php artisan key:generate"
"php artisan pterodactyl:env",
"php artisan pterodactyl:mail",
"php artisan migrate",
"php artisan db:seed",
"php artisan pterodactyl:user"
], ],
"setup": [ "setup": [
"composer install --ansi --no-dev", "composer install --ansi --no-dev",
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"", "php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"php artisan key:generate", "php artisan key:generate"
"php artisan pterodactyl:env",
"php artisan pterodactyl:mail",
"php artisan migrate",
"php artisan db:seed",
"php artisan pterodactyl:user"
], ],
"upgrade": [ "upgrade": [
"composer update --ansi --no-dev", "composer update --ansi --no-dev"
"php artisan pterodactyl:env",
"php artisan migrate"
] ]
}, },
"config": { "config": {