-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.36 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
{
"name": "opennetadmin/ona-core",
"description": "Core OpenNetAdmin component. Provides REST API and core logic.",
"keywords": ["opennetadmin", "ona", "ipam"],
"homepage": "http://github.com/opennetadmin/ona-core",
"type": "project",
"license": "GPL-2.0",
"authors": [
{
"name": "Matt Pascoe",
"email": "[email protected]",
"homepage": "http://opennetadmin.com",
"role": "developer"
}
],
"suggest": {
"opennetamdin/ona-gui": "Web front end for OpenNetAdmin"
},
"support": {
"email": "[email protected]",
"source": "http://github.com/opennetadmin/ona-core",
"issues": "http://github.com/opennetadmin/ona-core/issues",
"wiki": "http://github.com/opennetadmin/ona-core/wiki",
"irc": "irc://irc.freenode.org/ona"
},
"require": {
"php": ">=5.5.0",
"ext-gmp": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-xml": "*",
"adodb/adodb-php": "~5.9",
"slim/slim": "^3.0",
"lcobucci/jwt": "3.2",
"monolog/monolog": ">=1.6.0"
},
"autoload": {
"psr-4": {
"ONA\\": "lib/"
}
},
"scripts": {
"post-update-cmd": "echo 'Unable to open database config file. Please run installer: php $PWD/install/install.php'"
}
}