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

49 lines
1.2 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
},
2021-11-06 16:34:26 +01:00
"version": "1.0~ynh2",
"url": "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": {
2021-11-06 16:34:26 +01:00
"yunohost": ">= 4.2.8"
2019-03-08 21:18:22 +01:00
},
"multi_instance": true,
"services": [
"nginx",
2021-11-06 16:34:26 +01:00
"php7.3-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
},
2021-11-06 21:46:08 +01:00
"choices": ["7.3", "7.4", "8.0"],
2020-11-01 19:01:41 +01:00
"default": "7.3"
2019-03-08 21:18:22 +01:00
}
]
}
}