forked from midasplatform/Midas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.19 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
76
{
"name": "midas-platform/midas-server",
"description": "Server component of the Midas Platform",
"type": "project",
"homepage": "http://www.midasplatform.org",
"license": "Apache-2.0",
"support": {
"docs": "https://midas-server.readthedocs.org",
"email": "kitware@kitware.com",
"issues": "https://github.com/midasplatform/Midas/issues",
"source": "https://github.com/midasplatform/Midas"
},
"require": {
"php": ">=5.3.9",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-json": "*",
"erusev/parsedown-extra": "^0.7.1",
"francodacosta/phmagick": "0.4.*@dev",
"google/apiclient": "^1.1.6",
"intervention/image": "^2.2.2",
"ircmaxell/random-lib": "^1.1.0",
"justinrainbow/json-schema": "~2.0",
"maennchen/zipstream-php": "^0.3.0",
"moontoast/math": "^1.1.0",
"ramsey/uuid": ">=2.8.3 <4.0",
"reprovinci/solr-php-client": "^1.0.3",
"sendgrid/sendgrid": "^4.0.1",
"zendframework/zendframework1": "^1.12.17"
},
"require-dev": {
"ext-xdebug": "*",
"fabpot/php-cs-fixer": "^1.11.1",
"jokkedk/zfdebug": "^1.6.2",
"leafo/scssphp": "^0.4.0",
"phpcheckstyle/phpcheckstyle": "V0.14.1",
"phpunit/dbunit": "^1.4.1",
"phpunit/phpcov": "^2.0.2",
"phpunit/phpunit": "^4.8.23",
"ramsey/uuid-console": "^1.1.0",
"satooshi/php-coveralls": "^1.0.1",
"sensiolabs/security-checker": "^3.0.2",
"symfony/console": "^2.8.2"
},
"suggest": {
"ext-imagick": "*",
"ext-ldap": "*",
"ext-memcached": "*",
"ext-pdo_mysql": "*",
"ext-pdo_pgsql": "*",
"ext-pdo_sqlite": "*",
"ext-openssl": "*",
"ext-zip": "*"
},
"autoload": {
"psr-0": {
"Midas_": "library",
"REST_": "library"
}
},
"include-path": [
"core/dao",
"library"
],
"archive": {
"exclude": [
"/core/configs/*.local.*",
"/data/**",
"/log/**",
"/tmp/**"
]
},
"config": {
"secure-http": false
}
}