1{ 2 "name": "ruflin/elastica", 3 "description": "Elasticsearch Client", 4 "keywords": ["search","client"], 5 "homepage": "http://elastica.io/", 6 "type": "library", 7 "license": "MIT", 8 "authors": [ 9 { 10 "name": "Nicolas Ruflin", 11 "homepage": "http://ruflin.com/" 12 } 13 ], 14 "require": { 15 "php": "^7.0", 16 "psr/log": "~1.0", 17 "elasticsearch/elasticsearch": "dev-master" 18 }, 19 "require-dev": { 20 "aws/aws-sdk-php": "~3.0", 21 "guzzlehttp/guzzle": "~6.0" 22 }, 23 "suggest": { 24 "aws/aws-sdk-php": "Allow using IAM authentication with Amazon ElasticSearch Service", 25 "egeloen/http-adapter": "Allow using httpadapter transport", 26 "guzzlehttp/guzzle": "Allow using guzzle 6 as the http transport", 27 "monolog/monolog": "Logging request" 28 }, 29 "autoload": { 30 "psr-4": { 31 "Elastica\\": "lib/Elastica/" 32 } 33 }, 34 "autoload-dev": { 35 "psr-4": { 36 "Elastica\\Test\\": "test/Elastica/" 37 } 38 }, 39 "extra": { 40 "branch-alias": { 41 "dev-master": "6.0.x-dev" 42 } 43 } 44} 45