1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hubzilla_ynh.git synced 2024-09-03 19:26:21 +02:00

Merge pull request #94 from YunoHost-Apps/fix-php

v7.4 requires PHP8.0
This commit is contained in:
Éric Gaspar 2022-08-19 20:54:08 +02:00 committed by GitHub
commit 06743d5b25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 4 deletions

View file

@ -19,6 +19,7 @@ Decentralized publication platform and social network.
**Shipped version:** 7.4~ynh1 **Shipped version:** 7.4~ynh1
## Screenshots ## Screenshots
![Screenshot of Hubzilla](./doc/screenshots/hubzilla-1.png) ![Screenshot of Hubzilla](./doc/screenshots/hubzilla-1.png)

View file

@ -17,7 +17,8 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
Plateforme de publication décentralisée et un réseau social. Plateforme de publication décentralisée et un réseau social.
**Version incluse :** 7.4~ynh1 **Version incluse :** 7.4~ynh1
## Captures d'écran ## Captures d'écran

View file

@ -22,12 +22,12 @@
"email": "andrew@reticu.li" "email": "andrew@reticu.li"
}, },
"requirements": { "requirements": {
"yunohost": ">= 4.3.0" "yunohost": ">= 11.0.9"
}, },
"multi_instance": true, "multi_instance": true,
"services": [ "services": [
"nginx", "nginx",
"php7.3-fpm", "php8.0-fpm",
"mysql" "mysql"
], ],
"arguments": { "arguments": {

View file

@ -4,7 +4,7 @@
# COMMON VARIABLES # COMMON VARIABLES
#================================================= #=================================================
YNH_PHP_VERSION="7.3" YNH_PHP_VERSION="8.0"
# dependencies used by the app # dependencies used by the app
pkg_dependencies="php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-cli php${YNH_PHP_VERSION}-imagick php${YNH_PHP_VERSION}-xml php${YNH_PHP_VERSION}-zip php${YNH_PHP_VERSION}-pgsql php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-json php${YNH_PHP_VERSION}-gd" pkg_dependencies="php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-cli php${YNH_PHP_VERSION}-imagick php${YNH_PHP_VERSION}-xml php${YNH_PHP_VERSION}-zip php${YNH_PHP_VERSION}-pgsql php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-json php${YNH_PHP_VERSION}-gd"