-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
34 lines (34 loc) · 877 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
{
"name": "cunningsoft/chat-bundle",
"type": "symfony-bundle",
"description": "A chat bundle for Symfony2",
"keywords": ["chat", "communication"],
"homepage": "https://github.com/dmecke/ChatBundle",
"license": "MIT",
"authors": [
{
"name": "Daniel Mecke",
"homepage": "https://github.com/dmecke"
},
{
"name": "Contributors",
"homepage": "https://github.com/dmecke/ChatBundle/contributors"
}
],
"require": {
"symfony/symfony": "~2.3",
"doctrine/orm": ">=2.2.0",
"knplabs/knp-time-bundle": "~1.3"
},
"extra": {
"branch-alias": {
"dev-master": "0.5-dev"
}
},
"autoload": {
"psr-0": {
"Cunningsoft\\ChatBundle": ""
}
},
"target-dir": "Cunningsoft/ChatBundle"
}