-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
39 lines (39 loc) · 1.32 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
{
"name": "kitano/connection-bundle",
"description": "Directed graph implementation to create any connection between two objects (ie. follower/following relation in a social network)",
"keywords": ["connection", "social", "friendship", "friends"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Thomas Tourlourat",
"email": "[email protected]",
"homepage": "http://www.armetiz.info"
},
{
"name": "Benjamin Dulau",
"email": "[email protected]",
"homepage": "http://www.anonymation.com"
},
{
"name": "Valentin Ferriere",
"email": "[email protected]",
"homepage": "http://www.v-labs.fr"
}
],
"require": {
"symfony/framework-bundle": ">=2.0",
"symfony/validator": ">=2.0",
"doctrine/common": ">=2"
},
"require-dev": {
"symfony/yaml": ">=2.0",
"doctrine/orm": ">=2",
"doctrine/mongodb-odm": "1.0.0-BETA8",
"beberlei/DoctrineExtensions": "dev-master"
},
"autoload": {
"psr-0": { "Kitano\\ConnectionBundle": "" }
},
"target-dir": "Kitano/ConnectionBundle"
}