forked from stuartcarnie/orientdb-odm
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
61 lines (60 loc) · 1.63 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
{
"name": "orienttechnologies/orientdb-php-odm",
"type": "library",
"description": "An object-document mapper for PHP and OrientDB",
"keywords": ["orientdb", "ODM"],
"license": "MIT",
"authors": [
{
"name": "Stuart Carnie",
"email": "[email protected]",
"homepage": "http://stuartcarnie.com"
},
{
"name": "Alessandro Nadalin",
"email": "[email protected]",
"homepage": "http://www.odino.org"
},
{
"name": "David Funaro",
"email": "[email protected]",
"homepage": "http://davidfunaro.com"
},
{
"name": "Daniele Alessandri",
"email": "[email protected]",
"homepage": "http://clorophilla.net"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/stuartcarnie/athletic.git"
}
],
"autoload": {
"psr-0": {
"Doctrine\\OrientDB": "src/",
"Doctrine\\ODM\\OrientDB": "src/",
"Benchmarks": "benchmarks/"
}
},
"require": {
"php": ">=5.5.0",
"doctrine/common": "2.x",
"doctrine/annotations": "1.x",
"symfony/finder": "2.x",
"ostico/PhpOrient": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "4.x"
,"athletic/athletic": "2.x"
,"phpspec/prophecy": "dev-master"
,"guzzle/guzzle": "*"
,"symfony/class-loader": "2.x"
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "stable"
}