-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 1 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
{
"name": "dri-nordic/sugarcrm-console",
"license": "MIT",
"description": "",
"homepage": "http://gitlab.scm.dri.pt/dri-nordic/sugarcrm-console",
"authors": [
{
"name": "Emil Kilhage",
"email": "emilkilhage@gmail.com"
}
],
"require": {
"php": ">=5.3.3",
"psr/log": "~1.0",
"symfony/console": "~2.4",
"symfony/yaml": "~2.4",
"symfony/config": "~2.4",
"symfony/filesystem": "~2.4",
"symfony/finder": "~2.4",
"symfony/var-dumper": "~2.4",
"symfony/dependency-injection": "~2.4",
"twig/twig": "~1.15"
},
"autoload": {
"psr-4": {
"DRI\\SugarCRM\\Console\\": "src/DRI/SugarCRM/Console",
"DRI\\SugarCRM\\Language\\": "src/DRI/SugarCRM/Language",
"DRI\\SugarCRM\\Generator\\": "src/DRI/SugarCRM/Generator",
"DRI\\SugarCRM\\Module\\": "src/DRI/SugarCRM/Module"
}
},
"bin": [
"bin/sugarcrm"
]
}