From 6ed19b3f260c36ef34d771701d54ebb3ff5ac3d8 Mon Sep 17 00:00:00 2001 From: Arthur Lutz Date: Mon, 24 Feb 2020 16:30:32 +0100 Subject: [PATCH] [_common.sh] php7.3 is buster default --- scripts/_common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index b128cee..5258b61 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -19,7 +19,7 @@ ynh_composer_exec () { # Manage arguments with getopts ynh_handle_getopts_args "$@" workdir="${workdir:-$final_path}" - phpversion="${phpversion:-7.0}" + phpversion="${phpversion:-7.3}" COMPOSER_HOME="$workdir/.composer" \ php${phpversion} "$workdir/composer.phar" $commands \ @@ -39,7 +39,7 @@ ynh_install_composer () { # Manage arguments with getopts ynh_handle_getopts_args "$@" workdir="${workdir:-$final_path}" - phpversion="${phpversion:-7.0}" + phpversion="${phpversion:-7.3}" curl -sS https://getcomposer.org/installer \ | COMPOSER_HOME="$workdir/.composer" \