1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/drupal_ynh.git synced 2024-09-03 18:35:53 +02:00

Move to PHP8.0

This commit is contained in:
yalh76 2022-10-14 03:54:12 +02:00
parent 71d675cf26
commit b102f489d2
2 changed files with 5 additions and 3 deletions

View file

@ -6,7 +6,7 @@
"en": "A content management framework written in PHP",
"fr": "Un système de gestion de contenu écrit en PHP"
},
"version": "9.4.8~ynh1",
"version": "9.4.8~ynh2",
"url": "https://www.drupal.org",
"upstream": {
"license": "GPL-2.0-or-later",
@ -24,7 +24,7 @@
"multi_instance": true,
"services": [
"nginx",
"php7.4-fpm",
"php8.0-fpm",
"mysql"
],
"arguments": {

View file

@ -6,7 +6,9 @@
# PHP APP SPECIFIC
#=================================================
php_dependencies="php$YNH_DEFAULT_PHP_VERSION-fpm php$YNH_DEFAULT_PHP_VERSION-cli php$YNH_DEFAULT_PHP_VERSION-gd php$YNH_DEFAULT_PHP_VERSION-mysql php$YNH_DEFAULT_PHP_VERSION-xml php$YNH_DEFAULT_PHP_VERSION-ldap php$YNH_DEFAULT_PHP_VERSION-mbstring php$YNH_DEFAULT_PHP_VERSION-json php$YNH_DEFAULT_PHP_VERSION-simplexml php$YNH_DEFAULT_PHP_VERSION-curl"
YNH_PHP_VERSION=8.0
php_dependencies="php$YNH_PHP_VERSION-fpm php$YNH_PHP_VERSION-cli php$YNH_PHP_VERSION-gd php$YNH_PHP_VERSION-mysql php$YNH_PHP_VERSION-xml php$YNH_PHP_VERSION-ldap php$YNH_PHP_VERSION-mbstring php$YNH_PHP_VERSION-json php$YNH_PHP_VERSION-simplexml php$YNH_PHP_VERSION-curl"
# dependencies used by the app (must be on a single line)
pkg_dependencies="curl $php_dependencies"