summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/composer.json')
-rw-r--r--vendor/ruflin/elastica/composer.json43
1 files changed, 43 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/composer.json b/vendor/ruflin/elastica/composer.json
new file mode 100644
index 00000000..8bffc334
--- /dev/null
+++ b/vendor/ruflin/elastica/composer.json
@@ -0,0 +1,43 @@
+{
+ "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": ">=5.3.3",
+ "psr/log": "~1.0"
+ },
+ "require-dev": {
+ "munkie/elasticsearch-thrift-php": "1.4.*",
+ "guzzlehttp/guzzle": "5.3.*"
+ },
+ "suggest": {
+ "munkie/elasticsearch-thrift-php": "Allow using thrift transport",
+ "guzzlehttp/guzzle": "Allow using guzzle 5.3.x as the http transport (Requires php 5.4)",
+ "egeloen/http-adapter": "Allow using httpadapter transport",
+ "monolog/monolog": "Logging request"
+ },
+ "autoload": {
+ "psr-4": {
+ "Elastica\\": "lib/Elastica/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Elastica\\Test\\": "test/lib/Elastica/Test/"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ }
+}