-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.04 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "networq/networq-cli",
"description": "Web-based Networq browser",
"homepage": "http://www.github.com/networq/networq-web",
"keywords": ["networq", "graph", "modeling", "linkorb"],
"type": "application",
"authors": [
{
"name": "LinkORB Engineering",
"email": "engineering@linkorb.com",
"role": "Development"
}
],
"require": {
"php": "^7.2",
"networq/networq": "^1.0",
"symfony/console": "^4.0",
"symfony/process": "^4.0",
"symfony/yaml": "^4.0",
"symfony/dotenv": "^4.0",
"linkorb/connector": "^1.0",
"dbtk/schema-loader": "^2.0"
},
"require-dev": {
"linkorb/autotune": "^1.0",
"seld/phar-utils": "^1.0",
"symfony/finder": "^4.1",
"phpro/grumphp": "^0.14.1"
},
"autoload": {
"psr-4": {
"Networq\\Cli\\": "src/"
}
},
"scripts": {
"build-phar": "Networq\\Cli\\Utils\\Compiler::buildPhar"
},
"license": "MIT"
}