forked from elastic/elasticsearch-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.08 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
46
47
{
"name": "elasticsearch/elasticsearch",
"description": "PHP Client for Elasticsearch",
"keywords": ["search","client", "elasticsearch"],
"type": "library",
"license": "Apache 2",
"authors": [
{
"name": "Zachary Tong"
}
],
"require": {
"php": ">=5.3.9",
"monolog/monolog": "~1.11",
"pimple/pimple": "~3.0",
"guzzle/guzzle": "~3.0",
"psr/log": "~1.0",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"mockery/mockery": "0.9.4",
"athletic/athletic": "~0.1",
"symfony/yaml": "2.4.3 as 2.4.2",
"satooshi/php-coveralls": "dev-master",
"mikey179/vfsStream": "~1.2",
"twig/twig": "1.*",
"cpliakas/git-wrapper": "~1.0"
},
"autoload": {
"psr-4": {
"Elasticsearch\\": "src/Elasticsearch/"
}
},
"autoload-dev": {
"psr-4": {
"Elasticsearch\\Tests\\": "tests/Elasticsearch/Tests/",
"Elasticsearch\\Benchmarks\\": "benchmarks/Elasticsearch/Benchmarks/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/polyfractal/Yaml"
}
]
}