forked from vrana/adminer
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
75 lines (75 loc) · 2.48 KB
/
composer.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "adminneo/adminneo",
"description": "Database management in a single PHP file.",
"homepage": "https://github.com/adminneo-org/adminneo",
"keywords": [
"database"
],
"support": {
"issues": "https://github.com/adminneo-org/adminneo/issues",
"forum": "https://github.com/adminneo-org/adminneo/discussions",
"source": "https://github.com/adminneo-org/adminneo"
},
"authors": [
{
"name": "Peter Knut"
},
{
"name": "Jakub Vrána",
"homepage": "https://www.vrana.cz/"
}
],
"autoload": {
"exclude-from-classmap": [
"adminer/drivers/",
"plugins/drivers/"
],
"classmap": [
"plugins/"
]
},
"license": [
"Apache-2.0",
"GPL-2.0-only"
],
"require": {
"php": "5.6 - 8.4",
"ext-pdo": "*",
"ext-json": "*",
"vrana/jush": "2.0.*",
"vrana/jsshrink": "@dev"
},
"suggest": {
"ext-openssl": "Allows secure encryption of login information",
"ext-zlib": "Allows to export databases in compressed gzip (.gz) files",
"ext-suhosin": "Enhace CSRF protection",
"ext-mysqli": "Allows access to MySQL database",
"ext-mysql": "Allows access to MySQL database (old driver)",
"ext-pgsql": "Allows access to PostgreSQL database",
"ext-mongo": "Allows access to MongoDB database (old extension)",
"ext-mongodb": "Allows access to MongoDB database",
"ext-sqlsrv": "Allows access to MS SQ database",
"ext-mssql": "Allows access to MS SQL database (old extension)",
"ext-oci8": "Allows access to Oracle database",
"ext-interbase": "Allows access to Firebird database",
"ext-simplexml": "Allows access to SimpleDB database",
"ext-libxml": "Allows processing responses from SimpleDB database",
"ext-pdo_pgsql": "PDO interface for PostgreSQL database",
"ext-pdo_dblib": "PDO interface for MS SQL database and Sybase",
"ext-pdo_sqlite": "PDO interface for SQLite database",
"ext-pdo_oci": "PDO interface for Oracle database"
},
"scripts": {
"compile": "php compile.php"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/peterpp/jush.git"
},
{
"type": "vcs",
"url": "https://github.com/peterpp/js-shrink.git"
}
]
}