gitextract_3xv09ez2/ ├── .gitattributes ├── .gitignore ├── .php_cs.dist ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit ├── phpunit.xml.dist ├── src/ │ ├── AbstractModel.php │ ├── Collections/ │ │ ├── Definitions.php │ │ ├── Headers.php │ │ ├── Parameters.php │ │ ├── Paths.php │ │ └── Responses.php │ ├── Contact.php │ ├── ExternalDocs.php │ ├── Header.php │ ├── Info.php │ ├── Items.php │ ├── License.php │ ├── Operation.php │ ├── Parameter.php │ ├── Parts/ │ │ ├── ConsumesPart.php │ │ ├── DescriptionPart.php │ │ ├── ExtensionPart.php │ │ ├── ExternalDocsPart.php │ │ ├── ItemsPart.php │ │ ├── ParametersPart.php │ │ ├── ProducesPart.php │ │ ├── RefPart.php │ │ ├── RequiredPart.php │ │ ├── ResponsesPart.php │ │ ├── SchemaPart.php │ │ ├── SchemesPart.php │ │ ├── SecurityPart.php │ │ ├── TagsPart.php │ │ ├── TypePart.php │ │ └── UrlPart.php │ ├── Path.php │ ├── Response.php │ ├── Schema.php │ ├── SecurityScheme.php │ ├── Swagger.php │ ├── Tag.php │ └── Util/ │ └── MergeHelper.php └── tests/ ├── BasicAuthTest.php ├── CollectionsTest.php ├── KeekoTest.php ├── PetstoreTest.php ├── SwaggerTest.php └── fixtures/ ├── basic-auth.json ├── keeko-user.json ├── petstore-dictionaries.json ├── petstore-expanded.json ├── petstore-minimal.json ├── petstore-parameter-refs.json ├── petstore-simple.json ├── petstore-with-external-docs.json └── petstore.json