Skip to content
Snippets Groups Projects
Commit fe8d0a38 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[FEATURE] PHP 7.3 support

parent 341e896b
No related branches found
No related tags found
No related merge requests found
......@@ -93,10 +93,18 @@ if node['platform_version'] == '16.04'
end
end
else
# no mcrypt anymore
%w(php php-cli php-curl php-intl php-gd php-mysql php-xml php-json php-mbstring php-soap php-zip php-imagick).each do |name|
package name do
action :install
if node['ubuntu_base']['php_version'] == '7.3'
%w(php7.3 php7.3-cli php7.3-curl php7.3-intl php7.3-gd php7.3-mysql php7.3-xml php7.3-json php7.3-mbstring php7.3-soap php7.3-zip php7.3-imagick).each do |name|
package name do
action :install
end
end
else
# no mcrypt anymore
%w(php php-cli php-curl php-intl php-gd php-mysql php-xml php-json php-mbstring php-soap php-zip php-imagick).each do |name|
package name do
action :install
end
end
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment