forked from salesagility/SuiteCRM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.16 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
{
"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": "*",
"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.x-dev as 3.0.0",
"google/recaptcha": "^1.1"
},
"require-dev": {
"leafo/scssphp": "dev-master",
"mikey179/vfsStream": "1.4.*",
"codeception/codeception": "^2.0",
"fzaninotto/Faker": "^1.6",
"jeroendesloovere/vcard": "v1.5",
"browserstack/browserstack-local": "dev-master"
},
"scripts": {},
"prefer-stable": true,
"autoload": {
"psr-4": {
"SuiteCRM\\": [
"lib/",
"include/",
"tests/SuiteCRM/",
"tests/unit/lib/SuiteCRM/"
],
"SuiteCRM\\Custom\\": [
"custom/lib"
]
}
},
"extra": {}
}