forked from ruflin/Elastica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.15 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
44
45
{
"name": "ruflin/elastica",
"description": "Elasticsearch Client",
"keywords": ["search","client"],
"homepage": "http://elastica.io/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Nicolas Ruflin",
"homepage": "http://ruflin.com/"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"psr/log": "~1.0",
"elasticsearch/elasticsearch": "^7.0"
},
"require-dev": {
"aws/aws-sdk-php": "~3.0",
"guzzlehttp/guzzle": "~6.0"
},
"suggest": {
"aws/aws-sdk-php": "Allow using IAM authentication with Amazon ElasticSearch Service",
"egeloen/http-adapter": "Allow using httpadapter transport",
"guzzlehttp/guzzle": "Allow using guzzle 6 as the http transport",
"monolog/monolog": "Logging request"
},
"autoload": {
"psr-4": {
"Elastica\\": "lib/Elastica/"
}
},
"autoload-dev": {
"psr-4": {
"Elastica\\Test\\": "test/Elastica/"
}
},
"extra": {
"branch-alias": {
"dev-master": "7.0.x-dev"
}
}
}