1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wordpress_ynh.git synced 2024-09-03 20:36:10 +02:00
This commit is contained in:
Florent 2024-07-18 20:35:41 +02:00 committed by GitHub
commit d6ac7de563
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 26 additions and 1 deletions

View file

@ -40,6 +40,13 @@ ram.runtime = "50M"
type = "group"
default = "visitors"
[install.phpversion]
ask.en = "Choose a PHP version you want to use for your app"
ask.fr = "Choisissez une version PHP que vous souhaitez utiliser pour votre application"
type = "select"
choices = ["8.0", "8.1", "8.2"]
default = "8.2"
[install.language]
ask.en = "Choose the application language"
ask.fr = "Choisissez la langue de l'application"
@ -73,7 +80,11 @@ ram.runtime = "50M"
admin.show_tile = false
[resources.apt]
packages = "mariadb-server, php8.2-mysql, php8.2-curl, php8.2-mbstring, php8.2-xml, php8.2-zip, php8.2-gd, php8.2-soap, php8.2-ssh2, php8.2-tokenizer, php8.2-ldap"
packages = "mariadb-server"
packages_from_raw_bash = """
echo "php${phpversion}-mysql php${phpversion}-curl php${phpversion}-mbstring php${phpversion}-xml php${phpversion}-zip php${phpversion}-gd php${phpversion}-soap"
echo "php${phpversion}-ssh2 php${phpversion}-tokenizer php${phpversion}-ldap"
"""
[resources.database]
type = "mysql"

View file

@ -29,3 +29,17 @@ test_format = 1.0
args.language = "en_US"
args.multisite = 1
[with_php8.0]
only = ["install.subdir"]
args.language = "en_US"
args.phpversion = "8.0"
[with_php8.1]
only = ["install.subdir"]
args.language = "en_US"
args.phpversion = "8.1"