-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
42 lines (42 loc) · 1.36 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
{
"name": "nilportugues/eloquent-mongodb-repository",
"description": "Eloquent MongoDB Repository implementation",
"keywords": ["eloquent", "mongodb", "mongo", "laravel", "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": {
"nilportugues/repository": "^2.3",
"nilportugues/assert": "^1.0",
"illuminate/database": "^5.2",
"illuminate/pagination": "^5.2",
"jenssegers/mongodb" : "v3.0.*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"fabpot/php-cs-fixer": "1.9.*"
},
"autoload": {
"psr-4": {
"NilPortugues\\Foundation\\": "src",
"NilPortugues\\Example\\": "example"
}
},
"autoload-dev": {
"psr-4": {
"NilPortugues\\Tests\\Foundation\\": "tests/"
}
},
"suggest": {
"nilportugues/mongodb-repository": "MongoDB Repository implementation.",
"nilportugues/eloquent-repository": "SQL Eloquent Repository implementation.",
"nilportugues/filesystem-repository": "FileSystem repository implementation.",
"nilportugues/repository-cache": "Cache any nilportugues/repository implementation."
}
}