-
Notifications
You must be signed in to change notification settings - Fork 970
/
composer.json
63 lines (63 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "elasticsearch/elasticsearch",
"description": "PHP Client for Elasticsearch",
"keywords": [
"search",
"client",
"elasticsearch",
"elastic"
],
"type": "library",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"elastic/transport": "^8.10",
"psr/http-client": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/log": "^1|^2|^3",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"ext-yaml": "*",
"ext-zip": "*",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5",
"symfony/finder": "~4.0",
"nyholm/psr7": "^1.5",
"php-http/mock-client": "^1.5",
"symfony/http-client": "^5.0|^6.0|^7.0",
"psr/http-factory" : "^1.0",
"php-http/message-factory" : "^1.0"
},
"autoload": {
"psr-4": {
"Elastic\\Elasticsearch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Elastic\\Elasticsearch\\Tests\\": "tests/",
"Elastic\\Elasticsearch\\Util\\": "util/"
}
},
"scripts": {
"test" : [
"vendor/bin/phpunit --testdox"
],
"integration-test" : [
"vendor/bin/phpunit --testdox -c phpunit-integration-tests.xml"
],
"cloud-test" : [
"vendor/bin/phpunit --testdox -c phpunit-integration-cloud-tests.xml"
],
"phpstan": [
"phpstan analyse src --level 2 --no-progress --memory-limit 256M"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}