forked from YunoHost-Apps/phpmyadmin_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
57 lines (57 loc) · 1.58 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "phpMyAdmin",
"id": "phpmyadmin",
"packaging_format": 1,
"description": {
"en": "Manage MySQL databases over the web",
"fr": "Application web de gestion des bases de données MySQL"
},
"version": "4.9.2~ynh1",
"url": "http://www.phpmyadmin.net",
"license": "GPL-2.0-only",
"maintainer": {
"name": "julien",
"email": "[email protected]"
},
"requirements": {
"yunohost": ">= 3.5.0"
},
"multi_instance": false,
"services": [
"nginx",
"php7.0-fpm",
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for phpMyAdmin",
"fr": "Choisissez un domaine pour phpMyAdmin"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for phpMyAdmin",
"fr": "Choisissez un chemin pour phpMyAdmin"
},
"example": "/phpmyadmin",
"default": "/phpmyadmin"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose the only allowed admin user",
"fr": "Choisissez l'unique utilisateur autorisé"
},
"example": "johndoe"
}
]
}
}