-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
39 lines (39 loc) · 970 Bytes
/
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" : "elastic/openapi-codegen",
"description" : "A base library used to create Elastic PHP clients.",
"homepage": "https://github.com/elastic/openapi-codegen-php",
"keywords" : [
"search",
"client",
"elastic",
"openapi"
],
"license" : "Apache-2.0",
"type" : "library",
"authors" : [
{"name" : "Aurélien FOUCRET", "email": "[email protected]"}
],
"require" : {
"php" : "^5.6|^7.0|^8.0",
"guzzlehttp/ringphp" : "^1.0",
"psr/log" : "^1|^2|^3"
},
"require-dev" : {
"phpunit/phpunit" : "^5.6.0|^6.3.0|9.5.20",
"squizlabs/php_codesniffer" : "^3.4.0",
"friendsofphp/php-cs-fixer" : "^2.19|^3.0",
"overtrue/phplint" : "^1.2|^2.4|^3.4|^4.0|^5.0|^6.0",
"phpmd/phpmd" : "^2.6"
},
"autoload" : {
"psr-4" : {
"Elastic\\OpenApi\\Codegen\\" : ""
},
"exclude-from-classmap" : [
"/Tests/"
]
},
"bin": [
"resources/dev/elastic-openapi-codegen.sh"
]
}