...
 
Commits (7)
    https://gitcode.net/awesome-mirrors/laradock/laradock/-/commit/1527c399fd1c2e48242da478d8c3eb83acd18eec update: ioncube support for 8.0 and 8.1 2023-05-07T01:28:15+08:00 Ronnel R. Martinez woenel@users.noreply.github.com https://gitcode.net/awesome-mirrors/laradock/laradock/-/commit/4f1027bc59e98ee2af7f2e2da49e90a3f750a65d update: change operator 2023-05-07T01:52:01+08:00 Ronnel R. Martinez woenel@users.noreply.github.com https://gitcode.net/awesome-mirrors/laradock/laradock/-/commit/c4605098329e5d068559d0902e1fef4cb47d6dd6 update: operator 2023-05-07T01:54:15+08:00 Ronnel R. Martinez woenel@users.noreply.github.com https://gitcode.net/awesome-mirrors/laradock/laradock/-/commit/51d719adf1ee6dfccbdaf195a64e7be623ade677 Merge pull request #1 from woenel/master 2023-05-07T01:56:19+08:00 Ronnel R. Martinez woenel@users.noreply.github.com update: ioncube support for 8.0 and 8.1 https://gitcode.net/awesome-mirrors/laradock/laradock/-/commit/95c0da664dc3f43b3fd78f450879c89bb5de26ac update: fix condition 2023-05-07T02:38:54+08:00 Ronnel R. Martinez woenel@users.noreply.github.com https://gitcode.net/awesome-mirrors/laradock/laradock/-/commit/fecb7f032ed86b8afca4418d8d25fcd2b950691e update: remove php 8.0 2023-05-09T09:17:37+08:00 Ronnel R. Martinez woenel@users.noreply.github.com https://gitcode.net/awesome-mirrors/laradock/laradock/-/commit/f7fa9258b5b43daacba5520ee203104d3cd5932b Merge pull request #3384 from woenel/ioncube-patch 2023-05-09T10:42:40+08:00 Shao Yu-Lung (Allen) bestlong168@gmail.com update: ioncube support for php 8.1
......@@ -173,7 +173,7 @@ WORKSPACE_INSTALL_SWOOLE=false
WORKSPACE_INSTALL_TAINT=false
WORKSPACE_INSTALL_LIBPNG=false
WORKSPACE_INSTALL_GRAPHVIZ=false
WORKSPACE_INSTALL_IONCUBE=false # PHP 8.0 is not supported yet. Reference: https://forum.ioncube.com/viewtopic.php?t=4592
WORKSPACE_INSTALL_IONCUBE=false # PHP 8.2 is not supported yet.
WORKSPACE_INSTALL_MYSQL_CLIENT=false
WORKSPACE_INSTALL_PING=false
WORKSPACE_INSTALL_SSHPASS=false
......@@ -261,7 +261,7 @@ PHP_FPM_INSTALL_POSTGIS=false
PHP_FPM_INSTALL_PCNTL=false
PHP_FPM_INSTALL_CALENDAR=false
PHP_FPM_INSTALL_FAKETIME=false
PHP_FPM_INSTALL_IONCUBE=false # PHP 8.0 is not supported yet. Reference: https://forum.ioncube.com/viewtopic.php?t=4592
PHP_FPM_INSTALL_IONCUBE=false # PHP 8.2 is not supported yet.
PHP_FPM_INSTALL_RDKAFKA=false
PHP_FPM_INSTALL_GETTEXT=false
PHP_FPM_INSTALL_XMLRPC=false
......
......@@ -655,7 +655,13 @@ RUN if [ ${INSTALL_OCI8} = true ]; then \
ARG INSTALL_IONCUBE=false
RUN if [ ${INSTALL_IONCUBE} = true ]; then \
if [ $(php -r "echo PHP_MAJOR_VERSION;") != "8" ]; then \
if [ ${LARADOCK_PHP_VERSION} = "8.1" ] \
|| [ ${LARADOCK_PHP_VERSION} = "7.4" ] \
|| [ ${LARADOCK_PHP_VERSION} = "7.3" ] \
|| [ ${LARADOCK_PHP_VERSION} = "7.2" ] \
|| [ ${LARADOCK_PHP_VERSION} = "7.1" ] \
|| [ ${LARADOCK_PHP_VERSION} = "7.0" ] \
|| [ ${LARADOCK_PHP_VERSION} = "5.6" ]; then \
# Install the php ioncube loader
curl -L -o /tmp/ioncube_loaders_lin_x86-64.tar.gz https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz \
&& tar zxpf /tmp/ioncube_loaders_lin_x86-64.tar.gz -C /tmp \
......
......@@ -691,7 +691,13 @@ RUN if [ ${INSTALL_GRAPHVIZ} = true ]; then \
ARG INSTALL_IONCUBE=false
RUN if [ ${INSTALL_IONCUBE} = true ]; then \
if [ $(php -r "echo PHP_MAJOR_VERSION;") != "8" ]; then \
if [ ${LARADOCK_PHP_VERSION} = "8.1" ] \
|| [ ${LARADOCK_PHP_VERSION} = "7.4" ] \
|| [ ${LARADOCK_PHP_VERSION} = "7.3" ] \
|| [ ${LARADOCK_PHP_VERSION} = "7.2" ] \
|| [ ${LARADOCK_PHP_VERSION} = "7.1" ] \
|| [ ${LARADOCK_PHP_VERSION} = "7.0" ] \
|| [ ${LARADOCK_PHP_VERSION} = "5.6" ]; then \
# Install the php ioncube loader
curl -L -o /tmp/ioncube_loaders_lin_x86-64.tar.gz https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz \
&& tar zxpf /tmp/ioncube_loaders_lin_x86-64.tar.gz -C /tmp \
......