From ce6e51bd086c3b0d6618f6a2d376c8fd0c4c2e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simonas=20=C5=A0erlinskas?= <simonas.serlinskas@nfq.com> Date: Thu, 25 Jun 2015 11:33:39 +0300 Subject: [PATCH] added composer.json file --- composer.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..04147bd --- /dev/null +++ b/composer.json @@ -0,0 +1,26 @@ +{ + "name": "ongr/elasticsearch-dsl", + "description": "Elasticsearch DSL library", + "type": "library", + "homepage": "http://ongr.io", + "license": "MIT", + "authors": [ + { + "name": "ONGR team", + "homepage": "http://www.ongr.io" + } + ], + "require": { + "php": ">=5.4", + "elasticsearch/elasticsearch": "~1.0" + }, + "require-dev": { + "mikey179/vfsStream": "~1.4", + "phpunit/phpunit": "~4.4", + "squizlabs/php_codesniffer": "~2.0", + "ongr/ongr-strict-standard": "~2.0" + }, + "autoload": { + "psr-4": { "ONGR\\ElasticsearchDSL\\": "src/" } + } +} -- GitLab