Update packages

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2019-06-11 17:12:09 +02:00
parent 0c519c15fe
commit cdf03d6c96
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
4 changed files with 15 additions and 2 deletions

View file

@ -130,6 +130,11 @@ NPM_PACKAGES=(
"npm-check-updates"
)
# composer packages which should be installed globally
COMPOSER_PACKAGES=(
"laravel/installer"
)
###############################################################################
# Installtion information #
###############################################################################
@ -191,6 +196,10 @@ print_section "Installing global npm packages"
print_log "Installing ${#NPM_PACKAGES[@]} packages"
npm i -g "${NPM_PACKAGES[@]}"
print_section "Installing global composer packages"
print_log "Installing ${#COMPOSER_PACKAGES[@]} packages"
composer global require "${COMPOSER_PACKAGES[@]}"
###############################################################################
# Creating directories #
###############################################################################