File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
1111
1212### Features
1313
14+ - Added support for PHP 8.4
1415- Add support for Ubuntu 24.04 Noble release (#4411 #4451 )
1516- Add support for Jailed SSH (#4052 #4245 ) @rjd222
1617- Implement CLI for Quick Install Apps (#4443 )
Original file line number Diff line number Diff line change @@ -75,6 +75,11 @@ if [[ ${version:0:1} == "8" ]]; then
7575 mph=$( echo " $mph " | sed -e " s/php$version -json//" )
7676fi
7777
78+ # Check if version is 8.4 and drop imagick
79+ if [[ $( echo " $version 8.4" | awk ' {print ($1 < $2)}' ) == 1 ]]; then
80+ mph=$( echo " $mph " | sed -e " /php$version -imagick//" )
81+ fi
82+
7883if ! echo " $DB_SYSTEM " | grep -w ' mysql' > /dev/null; then
7984 mph=$( echo " $mph " | sed -e " s/php$version -mysql//" )
8085fi
You can’t perform that action at this time.
0 commit comments