-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.16 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
{
"name": "cimrie/odm",
"type": "library",
"description": "Doctrine MongoDB ODM integration with Laravel. Aim to be interoperable with other frameworks.",
"keywords": ["doctrine", "odm", "mongodb", "laravel"],
"homepage": "https://github.com/CImrie/odm",
"license": "MIT",
"authors": [
{
"name": "Connor Imrie",
"homepage": "https://connorimrie.com",
"role": "Developer"
}
],
"require": {
"alcaeus/mongo-php-adapter": "^1.0",
"ext-mongo": "*",
"doctrine/mongodb": "^1.4",
"doctrine/mongodb-odm": "^1.1",
"gedmo/doctrine-extensions": "^2.4",
"symfony/console": "~3.1",
"laravel-doctrine/orm": "^1.2"
},
"require-dev": {
"laravel/laravel": "^5.3",
"phpunit/phpunit": "^5.5",
"mockery/mockery": "^0.9.5"
},
"autoload":{
"psr-4": {
"CImrie\\ODM\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CImrie\\Odm\\Tests\\": "tests",
"Tests\\": "vendor/laravel/laravel/tests"
},
"classmap": [
"tests"
]
}
}