forked from salesagility/SuiteCRM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.43 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
{
"name": "salesagility/suitecrm",
"description": "SuiteCRM",
"type": "project",
"license": "GPL-3.0",
"authors": [],
"minimum-stability": "dev",
"config": {
"vendor-dir": "vendor",
"platform": {
"php": "5.5.9"
}
},
"require": {
"php": ">=5.5.9",
"ext-json": "*",
"ext-gd": "*",
"ext-curl": "*",
"ext-openssl": "*",
"ext-zip": "*",
"slim/slim": "^3.8",
"tuupola/slim-jwt-auth": "^2.0",
"league/url": "^3.3",
"psr/log": "^1.0",
"league/oauth2-server": "^5.1",
"justinrainbow/json-schema": "^5.2",
"onelogin/php-saml": "^3.0.0",
"google/recaptcha": "^1.1",
"symfony/options-resolver": "^3.4",
"symfony/validator": "^3.4",
"ezyang/htmlpurifier": "^4.10"
},
"require-dev": {
"leafo/scssphp": "dev-master",
"mikey179/vfsStream": "1.6.*",
"codeception/codeception": "^2.0",
"fzaninotto/Faker": "^1.6",
"jeroendesloovere/vcard": "v1.5",
"browserstack/browserstack-local": "dev-master",
"consolidation/robo": "^1.0.0",
"mockery/mockery": "^0.9.9",
"symfony/yaml": "^3.4",
"flow/jsonpath": "^0.3"
},
"scripts": {},
"prefer-stable": true,
"autoload": {
"psr-4": {
"SuiteCRM\\": [
"lib/",
"include/",
"tests/SuiteCRM/",
"tests/unit/lib/SuiteCRM/"
],
"SuiteCRM\\Custom\\": [
"custom/lib"
]
},
"classmap": [
"Api/"
]
},
"extra": {}
}