-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
35 lines (34 loc) · 1.11 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
{
"name": "infonova/infocmdb",
"description": "CMDB Solution based on PHP and MySQL, using a Workflow Engine based on GoLang and Perl",
"license": "Apache-2.0",
"config": {
"vendor-dir": "library/composer",
"cache-dir": ".composer"
},
"require": {
"robmorgan/phinx": "^0.10.0",
"robthree/twofactorauth": "^1.5",
"fzaninotto/faker": "^1.6.0",
"lcobucci/jwt": "^3.2.5",
"diablomedia/zendframework1": "^4.0",
"ext-dom": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-simplexml": "*",
"ext-soap": "*",
"ext-xml": "*",
"ext-zip": "*",
"zircote/swagger-php": "^3.0",
"matthiasmullie/minify": "^1.3"
},
"autoload": {
"files": ["library/composer/PhinxExtend/AbstractPhinxMigration.php"]
},
"scripts": {
"minify": ["@minify-util-js"],
"minify-util-js": "library/composer/matthiasmullie/minify/bin/minifyjs public/js/utils/util.js > public/js/utils/util.min.js"
}
}