2018-04-23 22:40:01 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-06-01 19:22:51 +02:00
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
2021-05-01 08:45:30 +02:00
|
|
|
YNH_PHP_VERSION="7.3"
|
|
|
|
|
2019-06-01 19:22:51 +02:00
|
|
|
# dependencies used by the app
|
2021-05-01 12:12:35 +02:00
|
|
|
extra_php_dependencies="php${YNH_PHP_VERSION}-cli php${YNH_PHP_VERSION}-common php${YNH_PHP_VERSION}-intl php${YNH_PHP_VERSION}-json"
|
|
|
|
|
|
|
|
pkg_dependencies="git"
|
2019-06-01 19:22:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
2018-04-27 10:30:15 +02:00
|
|
|
|
2019-06-01 19:22:51 +02:00
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
2018-04-27 10:30:15 +02:00
|
|
|
|
2019-06-01 19:22:51 +02:00
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|
2018-04-27 10:30:15 +02:00
|
|
|
|
2019-06-01 19:22:51 +02:00
|
|
|
# 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}"
|
2021-05-01 08:52:00 +02:00
|
|
|
phpversion="${phpversion:-7.3}"
|
2019-06-01 19:22:51 +02:00
|
|
|
|
|
|
|
COMPOSER_HOME="$workdir/.composer" \
|
|
|
|
php${phpversion} "$workdir/composer.phar" $commands \
|
|
|
|
-d "$workdir" --quiet --no-interaction
|
2018-04-27 10:30:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Install and initialize Composer in the given directory
|
2019-06-01 19:22:51 +02:00
|
|
|
#
|
|
|
|
# usage: ynh_install_composer --phpversion=phpversion [--workdir=$final_path]
|
|
|
|
# | arg: -w, --workdir - The directory from where the command will be executed. Default $final_path.
|
|
|
|
ynh_install_composer () {
|
|
|
|
# Declare an array to define the options of this helper.
|
|
|
|
local legacy_args=vw
|
|
|
|
declare -Ar args_array=( [v]=phpversion= [w]=workdir= )
|
|
|
|
local phpversion
|
|
|
|
local workdir
|
|
|
|
# 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
|
|
|
|
ynh_composer_exec --phpversion="${phpversion}" --workdir="$workdir" --commands="install --no-dev" \
|
|
|
|
|| ynh_die "Unable to update core dependencies with Composer."
|
2018-04-27 10:30:15 +02:00
|
|
|
}
|