-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.5 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
{
"name": "diego/call-center-platform",
"license": "GPL-3.0",
"description": "Call Center Platform",
"type": "symfony-bundle",
"authors": [
{
"name": "Diego Rivarola",
"email": "diegoangel77@rocketmail.com",
"homepage": "http://stackoverflow.com/story/diegorivarola"
}
],
"autoload": {
"psr-4": {
"CallCenter\\Bundle\\": "src/CallCenter/Bundle/",
"CallCenter\\Component\\": "src/CallCenter/Component/"
},
"classmap": []
},
"require": {
"php": ">=5.5.9",
"fresh/doctrine-enum-bundle": "~4.7",
"friendsofsymfony/user-bundle": "~2.0@dev",
"friendsofsymfony/rest-bundle": "^2.1",
"friendsofsymfony/jsrouting-bundle": "^1.6",
"doctrine/doctrine-migrations-bundle": "^1.0",
"egeloen/ckeditor-bundle": "^4.0",
"stof/doctrine-extensions-bundle": "^1.2",
"jms/serializer-bundle": "^1.0",
"gos/web-socket-bundle": "^1.8",
"sg/datatablesbundle": "^0.12.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.3",
"swiftmailer/swiftmailer": "~4.3|~5",
"symfony/console": "~2.3|~3.0",
"symfony/phpunit-bridge": "~2.7|~3.0",
"symfony/validator": "~2.3|~3.0",
"symfony/yaml": "~2.3|~3.0",
"sensio/generator-bundle": "^3.0",
"symfony/phpunit-bridge": "^3.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}