1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpinfo_ynh.git synced 2024-09-03 19:56:23 +02:00
phpinfo_ynh/manifest.json

53 lines
1.3 KiB
JSON
Raw Normal View History

2019-03-08 21:18:22 +01:00
{
"name": "Phpinfo",
"id": "phpinfo",
"packaging_format": 1,
"description": {
2021-11-06 16:34:26 +01:00
"en": "Simple phpinfo",
"fr": "Simple phpinfo"
2019-03-08 21:18:22 +01:00
},
2023-01-14 18:53:45 +01:00
"version": "1.0~ynh4",
"url": "https://www.php.net/manual/fr/function.phpinfo.php",
2022-03-13 17:58:16 +01:00
"upstream": {
"license": "GPL-3.0-or-later",
"website": "https://www.php.net/manual/fr/function.phpinfo.php"
},
"license": "GPL-3.0-or-later",
2019-03-08 21:18:22 +01:00
"maintainer": {
"name": "Maniack Crudelis",
"email": "maniackc_dev@crudelis.fr"
},
"requirements": {
2023-01-14 18:53:45 +01:00
"yunohost": ">= 11.0.9"
2019-03-08 21:18:22 +01:00
},
"multi_instance": true,
"services": [
"nginx",
2023-01-14 18:53:45 +01:00
"php7.4-fpm"
2019-03-08 21:18:22 +01:00
],
"arguments": {
"install" : [
{
"name": "domain",
2021-11-06 16:34:26 +01:00
"type": "domain"
2019-03-08 21:18:22 +01:00
},
{
"name": "path",
"type": "path",
"example": "/phpinfo",
"default": "/phpinfo"
},
{
"name": "phpversion",
"type": "string",
2019-03-08 21:18:22 +01:00
"ask": {
2021-11-06 16:34:26 +01:00
"en": "Choose the version of PHP to use.",
"fr": "Choisissez la version de PHP à utiliser."
2019-03-08 21:18:22 +01:00
},
2023-01-14 18:53:45 +01:00
"choices": ["7.3", "7.4", "8.0", "8.1"],
"default": "7.4"
2019-03-08 21:18:22 +01:00
}
]
}
}