mirror of
https://github.com/shivammathur/setup-php.git
synced 2025-07-23 23:29:07 +07:00
Show semantic versions on PHP install and correct logs
This commit is contained in:
@ -34,7 +34,7 @@ ext_dir=$(php -i | grep "extension_dir => /usr" | sed -e "s|.*=> s*||")
|
||||
sudo chmod 777 "$ini_file"
|
||||
mkdir -p "$(pecl config-get ext_dir)"
|
||||
composer global require hirak/prestissimo >/dev/null 2>&1
|
||||
add_log "$tick" "PHP" "Installed PHP$version"
|
||||
add_log "$tick" "PHP" "Installed PHP $(php -v | head -n 1 | cut -c 5-10)"
|
||||
add_log "$tick" "Composer" "Installed"
|
||||
|
||||
add_extension() {
|
||||
|
@ -18,7 +18,6 @@ add_log() {
|
||||
}
|
||||
existing_version=$(php-config --version | cut -c 1-3)
|
||||
version=$1
|
||||
status="Switched to PHP$version"
|
||||
step_log "Setup PHP and Composer"
|
||||
sudo mkdir -p /var/run
|
||||
sudo mkdir -p /run/php
|
||||
@ -30,7 +29,9 @@ if [ "$existing_version" != "$1" ]; then
|
||||
else
|
||||
sudo DEBIAN_FRONTEND=noninteractive apt-fast install -y php"$1" php"$1"-phpdbg php"$1"-xml curl php"$1"-curl >/dev/null 2>&1
|
||||
fi
|
||||
status="Installed PHP$version"
|
||||
status="installed"
|
||||
else
|
||||
status="switched"
|
||||
fi
|
||||
|
||||
for tool in php phar phar.phar php-cgi php-config phpize phpdbg; do
|
||||
@ -38,6 +39,13 @@ if [ "$existing_version" != "$1" ]; then
|
||||
sudo update-alternatives --set $tool /usr/bin/"$tool$1" >/dev/null 2>&1
|
||||
fi
|
||||
done
|
||||
if [ "$status" != "switched" ]; then
|
||||
status="Installed PHP $(php -v | head -n 1 | cut -c 5-10)"
|
||||
else
|
||||
status="Switched to PHP $(php -v | head -n 1 | cut -c 5-10)"
|
||||
fi
|
||||
else
|
||||
status="PHP $(php -v | head -n 1 | cut -c 5-10) Found"
|
||||
fi
|
||||
|
||||
ini_file=$(php --ini | grep "Loaded Configuration" | sed -e "s|.*:s*||" | sed "s/ //g")
|
||||
|
@ -39,7 +39,7 @@ if ($null -eq $installed -or -not("$($installed.Version).".StartsWith(($version
|
||||
$status = "Installed PHP $($installed.FullVersion)"
|
||||
}
|
||||
else {
|
||||
$status = "Switched to PHP $($installed.FullVersion)"
|
||||
$status = "PHP $($installed.FullVersion) Found"
|
||||
}
|
||||
|
||||
Set-PhpIniKey -Key 'date.timezone' -Value 'UTC' -Path $php_dir
|
||||
|
Reference in New Issue
Block a user