forked from ruflin/Elastica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 973 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
33
34
35
{
"name": "boosis/elastica",
"description": "Elasticsearch Client",
"keywords": ["search","client"],
"homepage": "http://elastica.io/",
"type": "library",
"license": "Apache 2.0",
"authors": [
{
"name": "Nicolas Ruflin",
"homepage": "http://ruflin.com/"
}
],
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"psr/log": "~1.0",
"munkie/elasticsearch-thrift-php": "1.4.*",
"phpunit/phpunit": "4.1.*",
"satooshi/php-coveralls": "dev-master"
},
"suggest": {
"munkie/elasticsearch-thrift-php": "Allow using thrift transport",
"guzzlehttp/guzzle": "Allow using guzzle 4.x as the http transport (requires php 5.4)",
"psr/log": "for logging",
"monolog/monolog": "Logging request"
},
"autoload": {
"psr-0": {
"Elastica": "lib/",
"Elastica\\Test": "test/lib/"
}
}
}