forked from loafle/openapi-generator-original
* Bump PHP version to 7.1 in readme * Bump PHP version to 7.1 in class templates * Remove HHVM from Travis CI config PHPUnit dropped support of hhvm, so build unlikely will pass tests. https://github.com/sebastianbergmann/phpunit/issues/3320#issuecomment-426325646 * Remove sudo: false from Travis-CI config Official doc recommendation: https://docs.travis-ci.com/user/reference/trusty/#container-based-infrastructure * Change tested versions to 7.1, 7.2 in Travis-CI * Remove PHP_CodeSniffer from dev dependencies There is another linter(PHP CS Fixer) which is fully configured while CodeSniffer isn't configured at all. * Use caret instead of tilde in dependencies ^2.12 equals (>= 2.12.0 && <3.0.0) while ~2.12 is (>=2.12.0 && <2.13.0) * Refresh samples
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"name": "GIT_USER_ID/GIT_REPO_ID",
|
|
"description": "This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\",
|
|
"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": ">=7.1",
|
|
"ext-curl": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"guzzlehttp/guzzle": "^6.2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7.4",
|
|
"friendsofphp/php-cs-fixer": "^2.12"
|
|
},
|
|
"autoload": {
|
|
"psr-4": { "OpenAPI\\Client\\" : "lib/" }
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": { "OpenAPI\\Client\\" : "test/" }
|
|
}
|
|
}
|