Commit composer lock and use config:cache for security purposes.
This commit is contained in:
parent
4be9e30eee
commit
e18391e98a
3 changed files with 5134 additions and 22 deletions
10
.gitignore
vendored
10
.gitignore
vendored
|
@ -1,12 +1,4 @@
|
||||||
/vendor
|
/vendor
|
||||||
*.DS_Store*
|
*.DS_Store*
|
||||||
.env
|
.env
|
||||||
.vagrant/*
|
node_modules
|
||||||
|
|
||||||
composer.lock
|
|
||||||
|
|
||||||
Homestead.yaml
|
|
||||||
Vagrantfile
|
|
||||||
Vagrantfile
|
|
||||||
|
|
||||||
node_modules
|
|
||||||
|
|
|
@ -60,27 +60,18 @@
|
||||||
],
|
],
|
||||||
"post-install-cmd": [
|
"post-install-cmd": [
|
||||||
"Illuminate\\Foundation\\ComposerScripts::postInstall",
|
"Illuminate\\Foundation\\ComposerScripts::postInstall",
|
||||||
"php artisan optimize"
|
"php artisan optimize",
|
||||||
|
"php artisan config:cache"
|
||||||
],
|
],
|
||||||
"post-update-cmd": [
|
"post-update-cmd": [
|
||||||
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
|
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
|
||||||
"php artisan optimize"
|
"php artisan optimize",
|
||||||
],
|
"php artisan config:cache"
|
||||||
"setup-dev": [
|
|
||||||
"composer install",
|
|
||||||
"php -r \"copy('.env.example', '.env');\"",
|
|
||||||
"php vendor/bin/homestead make --ip=192.168.10.32",
|
|
||||||
"sed -i.bak 's/homestead.app/pterodactyl.local/g' Homestead.yaml",
|
|
||||||
"rm Homestead.yaml.bak",
|
|
||||||
"php artisan key:generate"
|
|
||||||
],
|
],
|
||||||
"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"
|
||||||
],
|
|
||||||
"upgrade": [
|
|
||||||
"composer update --ansi --no-dev"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
|
|
5129
composer.lock
generated
Normal file
5129
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue