Skip to content

Commit 645958f

Browse files
committed
Update comments
Update ionCube Loader to version 12.0.2; Update ImageMagick to version 7.1.0-52; Update PHP mongodb extension to version 1.14.2; Update PHP xdebug extension to version 3.1.6; Update PHP phalcon extension to version 5.1.1; Bump version 20221115 Signed-off-by: Teddysun <[email protected]>
1 parent 0ef6d4f commit 645958f

File tree

5 files changed

+24
-20
lines changed

5 files changed

+24
-20
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@
6868
| PHP & Additional extensions | Version |
6969
|-------------------------------|-----------------------------------------------------------|
7070
| PHP | 7.4.33, 8.0.25, 8.1.12 |
71-
| ionCube Loader | 12.0.1 |
71+
| ionCube Loader | 12.0.2 |
7272
| PDFlib | 10.0.0 |
7373
| APCu extension | 5.1.21 |
7474
| gRPC extension | 1.45.0 |
75-
| ImageMagick | 7.1.0-50 |
75+
| ImageMagick | 7.1.0-52 |
7676
| imagick extension | 3.7.0 |
7777
| libsodium | 1.0.18 |
7878
| libsodium extension | 2.0.23 |
@@ -82,14 +82,14 @@
8282
| re2c | 3.0 |
8383
| redis | 5.0.14 |
8484
| redis extension | 5.3.7 |
85-
| mongodb extension | 1.13.0 |
85+
| mongodb extension | 1.14.2 |
8686
| swoole extension | 4.8.12 |
8787
| yaf extension | 3.3.5 |
8888
| yar extension | 2.3.2 |
8989
| msgpack extension | 2.1.2 |
9090
| psr extension | 1.2.0 |
91-
| phalcon extension | 4.1.2 |
92-
| xdebug extension | 3.1.3 |
91+
| phalcon extension | 5.1.1 |
92+
| xdebug extension | 3.1.6 |
9393

9494
| Database Management Tools | Version |
9595
|-------------------------------|-----------------------------------------------------------|

conf/lamp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ Options:
482482
}
483483

484484
display_version(){
485-
echo "Version: $(_green 20221015)"
485+
echo "Version: $(_green 20221115)"
486486
}
487487

488488
#Run it

include/config.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,11 @@ pdflib64_filename_url="https://www.pdflib.com/binaries/PDFlib/1000/PDFlib-10.0.0
145145
swoole_filename="swoole-4.8.12"
146146
swoole_filename_url="https://pecl.php.net/get/swoole-4.8.12.tgz"
147147
#php extension xdebug
148-
xdebug_filename="xdebug-3.1.3"
149-
xdebug_filename_url="https://pecl.php.net/get/xdebug-3.1.3.tgz"
148+
xdebug_filename="xdebug-3.1.6"
149+
xdebug_filename_url="https://pecl.php.net/get/xdebug-3.1.6.tgz"
150150
#ImageMagick
151-
ImageMagick_filename="ImageMagick-7.1.0-50"
152-
ImageMagick_filename_url="https://imagemagick.org/archive/ImageMagick-7.1.0-50.tar.gz"
151+
ImageMagick_filename="ImageMagick-7.1.0-52"
152+
ImageMagick_filename_url="https://imagemagick.org/archive/ImageMagick-7.1.0-52.tar.gz"
153153
#php extension imagick
154154
php_imagemagick_filename="imagick-3.7.0"
155155
php_imagemagick_filename_url="https://pecl.php.net/get/imagick-3.7.0.tgz"
@@ -169,8 +169,8 @@ redis_filename_url="http://download.redis.io/releases/redis-5.0.14.tar.gz"
169169
php_redis_filename="redis-5.3.7"
170170
php_redis_filename_url="https://pecl.php.net/get/redis-5.3.7.tgz"
171171
#php extension mongodb
172-
php_mongo_filename="mongodb-1.13.0"
173-
php_mongo_filename_url="https://pecl.php.net/get/mongodb-1.13.0.tgz"
172+
php_mongo_filename="mongodb-1.14.2"
173+
php_mongo_filename_url="https://pecl.php.net/get/mongodb-1.14.2.tgz"
174174
#libsodium
175175
libsodium_filename="libsodium-1.0.18"
176176
libsodium_filename_url="https://download.libsodium.org/libsodium/releases/libsodium-1.0.18.tar.gz"
@@ -184,8 +184,8 @@ yaf_filename_url="https://pecl.php.net/get/yaf-3.3.5.tgz"
184184
psr_filename="psr-1.2.0"
185185
psr_filename_url="https://pecl.php.net/get/psr-1.2.0.tgz"
186186
#php extension phalcon
187-
phalcon_filename="phalcon-4.1.2"
188-
phalcon_filename_url="https://pecl.php.net/get/phalcon-4.1.2.tgz"
187+
phalcon_filename="phalcon-5.1.1"
188+
phalcon_filename_url="https://pecl.php.net/get/phalcon-5.1.1.tgz"
189189
#php extension apcu
190190
apcu_filename="apcu-5.1.21"
191191
apcu_filename_url="https://pecl.php.net/get/apcu-5.1.21.tgz"

include/php-modules.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ php_modules_preinstall_settings(){
2121
echo "${php} available modules:"
2222
# Delete some modules (PHP 8 not support now) & change some module version
2323
if [[ "${php}" =~ ^php-8.[0-1].+$ ]]; then
24-
php_modules_arr=(${php_modules_arr[@]#${phalcon_filename}})
25-
php_modules_arr=(${php_modules_arr[@]#${ionCube_filename}})
2624
php_modules_arr=(${php_modules_arr[@]#${php_memcached_filename}})
2725
fi
26+
if [[ "${php}" =~ ^php-8.0.+$ ]]; then
27+
php_modules_arr=(${php_modules_arr[@]#${ionCube_filename}})
28+
fi
2829
if [[ "${php}" =~ ^php-8.1.+$ ]]; then
30+
php_modules_arr=(${php_modules_arr[@]#${phalcon_filename}})
2931
php_modules_arr=(${php_modules_arr[@]#${php_libsodium_filename}})
3032
fi
3133
display_menu_multi php_modules last

lamp.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ include(){
3030
}
3131

3232
version(){
33-
_info "Version: $(_green 20221015)"
33+
_info "Version: $(_green 20221115)"
3434
}
3535

3636
show_parameters(){
@@ -210,12 +210,14 @@ set_parameters(){
210210
[ "${php}" == "do_not_install" ] && php_modules_install="do_not_install"
211211
if [ -n "${php_modules_install}" ]; then
212212
if [[ "${php}" =~ ^php-8.[0-1].+$ ]]; then
213-
if_in_array "${phalcon_filename}" "${php_modules_install}" && _error "${phalcon_filename} is not support ${php}, please remove php extension: phalcon"
214-
if_in_array "${ionCube_filename}" "${php_modules_install}" && _error "${ionCube_filename} is not support ${php} now, please remove php extension: ioncube"
215213
if_in_array "${php_memcached_filename}" "${php_modules_install}" && _error "${php_memcached_filename} is not support ${php} now, please remove php extension: memcached"
216214
fi
215+
if [[ "${php}" =~ ^php-8.0.+$ ]]; then
216+
if_in_array "${ionCube_filename}" "${php_modules_install}" && _error "${ionCube_filename} is not support ${php} now, please remove php extension: ioncube"
217+
fi
217218
if [[ "${php}" =~ ^php-8.1.+$ ]]; then
218-
if_in_array "${php_libsodium_filename}" "${php_modules_install}" && _error "${php_libsodium_filename} is not support ${php}, please remove php extension: libsodium"
219+
if_in_array "${phalcon_filename}" "${php_modules_install}" && _error "${phalcon_filename} is not support ${php} now, please remove php extension: phalcon"
220+
if_in_array "${php_libsodium_filename}" "${php_modules_install}" && _error "${php_libsodium_filename} is not support ${php} now, please remove php extension: libsodium"
219221
fi
220222
fi
221223

0 commit comments

Comments
 (0)