forked from loafle/openapi-generator-original
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"description": "Echo Server API",
|
|
"keywords": [
|
|
"openapitools",
|
|
"openapi-generator",
|
|
"openapi",
|
|
"php",
|
|
"sdk",
|
|
"rest",
|
|
"api"
|
|
],
|
|
"homepage": "https://openapi-generator.tech",
|
|
"license": "unlicense",
|
|
"authors": [
|
|
{
|
|
"name": "OpenAPI-Generator contributors",
|
|
"homepage": "https://openapi-generator.tech"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1",
|
|
"ext-curl": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"guzzlehttp/guzzle": "^7.4.5",
|
|
"guzzlehttp/psr7": "^2.0"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^3.5",
|
|
"overtrue/phplint": "^9.0",
|
|
"phpunit/phpunit": "^9.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": { "OpenAPI\\Client\\" : "src/" }
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": { "OpenAPI\\Client\\Test\\" : "tests/" }
|
|
},
|
|
"scripts": {
|
|
"test": [
|
|
"@phplint"
|
|
],
|
|
"phplint": "phplint"
|
|
}
|
|
}
|