-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
39 lines (39 loc) · 1.02 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
{
"name": "novaway/elasticsearch-client",
"description": "[Discontinued] A lightweight PHP client for Elasticsearch",
"type": "library",
"keywords": [
"elasticsearch"
],
"license": "MIT",
"require": {
"php": "^7.0",
"elasticsearch/elasticsearch": "^5.2 || ^6.0",
"symfony/dependency-injection": "^3.0 || ^4.0",
"myclabs/php-enum": "^1.0"
},
"require-dev": {
"atoum/atoum": "^3.0",
"atoum/stubs": "^2.5",
"behat/behat": "^3.3",
"symfony/serializer": "^3.3",
"guzzlehttp/ringphp": "^1.1",
"symfony/yaml": "^3.3",
"symfony/var-dumper": "^3.3",
"webmozart/assert": "^1.0"
},
"suggest": {
"symfony/serializer": "Is required when working with the SymfonySerializerBridge"
},
"autoload": {
"psr-4": {
"Novaway\\ElasticsearchClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Unit\\Novaway\\ElasticsearchClient\\": "test/unit",
"Test\\Functional\\Novaway\\ElasticsearchClient\\Context\\":"test/functional/bootstrap"
}
}
}