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

Merge pull request #57 from YunoHost-Apps/upgrade

Move to PHP8.0
This commit is contained in:
yalh76 2022-10-14 13:05:08 +02:00 committed by GitHub
commit ed012ef543
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 5 deletions

View file

@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
Free and open-source content management framework.
**Shipped version:** 9.4.8~ynh1
**Shipped version:** 9.4.8~ynh2
## Screenshots

View file

@ -17,7 +17,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
Framework de gestion de contenu libre et open-source.
**Version incluse :** 9.4.8~ynh1
**Version incluse :** 9.4.8~ynh2
## Captures d'écran

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"