-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 1.13 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
{
"name": "nilportugues/mongodb-repository",
"description": "MongoDB Repository implementation",
"keywords": ["mongo", "mongoDB", "repository", "cache", "ddd", "hexagonal", "ports and adapters", "ports", "adapters", "repository", "pageable", "pagination", "nil portugues", "nilportugues"],
"type": "library",
"homepage": "http://nilportugues.com",
"license": "MIT",
"authors": [
{
"name": "Nil Portugués",
"email": "[email protected]"
}
],
"require": {
"mongodb/mongodb": "^1.0",
"nilportugues/repository": "^3.0.2",
"nilportugues/serializer": "^1.1",
"nilportugues/assert": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"fabpot/php-cs-fixer": "1.9.*"
},
"autoload": {
"psr-4": {
"NilPortugues\\Foundation\\Infrastructure\\Model\\Repository\\MongoDB\\": "src/Infrastructure/Model/Repository/MongoDB/",
"NilPortugues\\Example\\": "example/"
}
},
"autoload-dev": {
"psr-4": {
"NilPortugues\\Tests\\Foundation\\": "tests/"
}
},
"suggest": {
"nilportugues/repository-cache": "Cache database queries to improve performance."
}
}