-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.06 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
{
"name": "nilportugues/elasticSearch-repository",
"description": "ElasticSearch Repository implementation",
"keywords": ["elastica", "elasticsearch", "elastic", "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": "contact@nilportugues.com"
}
],
"require": {
"elasticsearch/elasticsearch": "~2.0",
"nilportugues/repository": "^2.0",
"nilportugues/assert": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"fabpot/php-cs-fixer": "1.9.*"
},
"autoload": {
"psr-4": {
"NilPortugues\\Foundation\\Infrastructure\\Model\\Repository\\ElasticSearch\\": "src",
"NilPortugues\\Example\\Repository\\": "example/"
}
},
"autoload-dev": {
"psr-4": {
"NilPortugues\\Tests\\Foundation\\Infrastructure\\Model\\Repository\\ElasticSearch\\": "tests/"
}
}
}