-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
40 lines (40 loc) · 1003 Bytes
/
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
{
"name": "inetprocess/libsugarcrm",
"description": "This library provides a various classes to interact with SugarCRM",
"type": "library",
"keywords": ["sugarcrm", "sugarcli"],
"authors": [
{
"name": "Emmanuel Dyan",
"email": "[email protected]"
},
{
"name": "Rémi Sauvat",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": ">=5.3",
"psr/log": "~1.0",
"symfony/finder": "~2",
"symfony/filesystem": "~2",
"symfony/yaml": "~2",
"symfony/process": "^2.8"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/dbunit": "~1.3"
},
"autoload": {
"psr-4": {
"Inet\\SugarCRM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inet\\SugarCRM\\Tests\\": "tests/"
}
}
}