-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
62 lines (62 loc) · 1.6 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
{
"name" : "elastic/enterprise-search",
"description" : "Enterprise Search official PHP client",
"homepage": "https://github.com/elastic/enterprise-search-php",
"keywords" : [
"elastic",
"client",
"search",
"enterprise",
"enterprisesearch",
"appsearch",
"workplace",
"workplacesearch"
],
"license" : "Apache-2.0",
"type" : "library",
"require": {
"php": "^7.4 || ^8.0",
"nyholm/psr7": "^1.3",
"elastic/transport": "^8.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"guzzlehttp/guzzle": "^7.0",
"phpstan/phpstan": "^1.8"
},
"suggest": {
"guzzlehttp/guzzle": "We suggest to use Guzzle as PSR-18 HTTP library"
},
"autoload": {
"psr-4": {
"Elastic\\EnterpriseSearch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Elastic\\EnterpriseSearch\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit"
],
"test-enterprise-search": [
"vendor/bin/phpunit -c phpunit-integration-enterprise-search.xml"
],
"test-app-search": [
"vendor/bin/phpunit -c phpunit-integration-app-search.xml"
],
"test-workplace-search": [
"vendor/bin/phpunit -c phpunit-integration-workplace-search.xml"
],
"phpstan": [
"vendor/bin/phpstan analyse src tests"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}