2019-07-01 22:55:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Execute a command with Composer
|
|
|
|
#
|
|
|
|
# usage: ynh_composer_exec --phpversion=phpversion [--workdir=$final_path] --commands="commands"
|
|
|
|
# | arg: -w, --workdir - The directory from where the command will be executed. Default $final_path.
|
|
|
|
# | arg: -c, --commands - Commands to execute.
|
|
|
|
ynh_composer_exec () {
|
|
|
|
# Declare an array to define the options of this helper.
|
|
|
|
local legacy_args=vwc
|
|
|
|
declare -Ar args_array=( [v]=phpversion= [w]=workdir= [c]=commands= )
|
|
|
|
local phpversion
|
|
|
|
local workdir
|
|
|
|
local commands
|
|
|
|
# Manage arguments with getopts
|
|
|
|
ynh_handle_getopts_args "$@"
|
|
|
|
workdir="${workdir:-$final_path}"
|
|
|
|
phpversion="${phpversion:-7.0}"
|
|
|
|
|
|
|
|
COMPOSER_HOME="$workdir/.composer" \
|
|
|
|
php${phpversion} "$workdir/composer.phar" $commands \
|
|
|
|
-d "$workdir" --quiet --no-interaction
|
|
|
|
}
|
|
|
|
|
|
|
|
# Install and initialize Composer in the given directory
|
|
|
|
#
|
2020-05-31 00:00:08 +02:00
|
|
|
# usage: ynh_install_composer --phpversion=phpversion [--workdir=$final_path] [--install_args="--optimize-autoloader"]
|
2019-07-01 22:55:10 +02:00
|
|
|
# | arg: -w, --workdir - The directory from where the command will be executed. Default $final_path.
|
2020-05-31 00:00:08 +02:00
|
|
|
# | arg: -a, --install_args - Additional arguments provided to the composer install. Argument --no-dev already include
|
2019-07-01 22:55:10 +02:00
|
|
|
ynh_install_composer () {
|
|
|
|
# Declare an array to define the options of this helper.
|
|
|
|
local legacy_args=vw
|
2020-05-31 00:00:08 +02:00
|
|
|
declare -Ar args_array=( [v]=phpversion= [w]=workdir= [a]=install_args=)
|
2019-07-01 22:55:10 +02:00
|
|
|
local phpversion
|
|
|
|
local workdir
|
2020-05-31 00:00:08 +02:00
|
|
|
local install_args
|
2019-07-01 22:55:10 +02:00
|
|
|
# Manage arguments with getopts
|
|
|
|
ynh_handle_getopts_args "$@"
|
|
|
|
workdir="${workdir:-$final_path}"
|
|
|
|
phpversion="${phpversion:-7.0}"
|
|
|
|
|
|
|
|
curl -sS https://getcomposer.org/installer \
|
|
|
|
| COMPOSER_HOME="$workdir/.composer" \
|
|
|
|
php${phpversion} -- --quiet --install-dir="$workdir" \
|
|
|
|
|| ynh_die "Unable to install Composer."
|
|
|
|
|
|
|
|
# update dependencies to create composer.lock
|
2020-05-31 00:00:08 +02:00
|
|
|
ynh_composer_exec --phpversion="${phpversion}" --workdir="$workdir" --commands="install --no-dev $install_args" \
|
2019-07-01 22:55:10 +02:00
|
|
|
|| ynh_die "Unable to update core dependencies with Composer."
|
|
|
|
}
|