This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
forked from inetprocess/sugarcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.71 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
{
"name": "nyt/sugarcli-nyt",
"description": "SugarCli-NYT is a command line tool to install and manage SugarCRM installations with customizations for The New York Times.",
"license": "Apache-2.0",
"keywords": [
"sugarcrm",
"sugarcli",
"The New York Times"
],
"authors": [
{
"name": "Customer Care Technology Team, The New York Times",
"email": "nytcsdev@nytimes.com",
"role": "Fork Development Team"
},
{
"name": "Emmanuel Dyan",
"email": "emmanuel.dyan@inetprocess.com",
"role": "Original Developer"
},
{
"name": "Rémi Sauvat",
"email": "remi.sauvat@inetprocess.com",
"role": "Original Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.3.9",
"ext-curl": "*",
"ext-Reflection": "*",
"csanquer/colibri-csv": "1.1.*",
"guzzle/guzzle": "~3.9",
"inetprocess/libinventoryclient": "^1.0",
"inetprocess/libsugarcrm": "^1.2",
"jms/serializer": "~0.16",
"padraic/phar-updater": "^1.0",
"symfony/config": "^2.8",
"symfony/console": "^2.8",
"symfony/dependency-injection": "^2.8",
"symfony/filesystem": "^2.8",
"symfony/finder": "^2.8",
"symfony/process": "^2.8",
"symfony/stopwatch": "^2.8",
"symfony/yaml": "^2.8",
"twig/twig": "~1.0",
"davedevelopment/twig-inflection": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4",
"phpunit/dbunit": "~1.3",
"fabpot/php-cs-fixer": "^1.10"
},
"autoload": {
"psr-4": {
"SugarCli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SugarCli\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "5.3.9"
}
},
"bin": [
"bin/sugarcli"
]
}