-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·32 lines (32 loc) · 937 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
{
"name": "jimanx2/doctrine-couchdb-odm",
"type": "library",
"description": "CouchDB Document Object Mapper",
"keywords": ["persistence", "couchdb"],
"homepage": "http://www.doctrine-project.org",
"license": "MIT",
"authors": [
{"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
{"name": "Lukas Kahwe Smith", "email": "smith@pooteeweet.org"}
],
"require": {
"php": "^5.6|>=8.1",
"doctrine/common": "2.7.x-dev|2.13.3",
"doctrine/couchdb": "@dev",
"symfony/console": ">=2.0",
"doctrine/instantiator": "~1.0"
},
"require-dev": {
"symfony/yaml": "~2.0",
"phpunit/phpunit": "@stable"
},
"suggest": {
"symfony/yaml": "If you want to use YAML Mappings"
},
"bin": ["bin/doctrine-couchdb.php"],
"autoload": {
"psr-0": {
"Doctrine\\ODM\\CouchDB": "lib/"
}
}
}