forked from loafle/openapi-generator-original
* Huge update for php-mezzio-ph generator: - proper container support for data types - support for query parameter references and query parameter schema references - dependency update (PHP 7.3+, PathHandler 0.7+, DataTransfer 0.5+) * Sample regeneration after rebasing for php-mezzio-ph * - added custom CLI option for php-mezzio-ph to generate code using modern PHP syntax - removed obsolete php-mezzio-ph samples in samples/openapi3/server/petstore/php-mezzio-ph * - fixes for JavaDoc declarations that seems to break CI * - fix for outdated sample file
72 lines
2.0 KiB
Plaintext
72 lines
2.0 KiB
Plaintext
.gitignore
|
|
README.md
|
|
application/config.yml
|
|
application/config/app.yml
|
|
application/config/data_transfer.yml
|
|
application/config/path_handler.yml
|
|
application/container.php
|
|
composer.json
|
|
public/index.php
|
|
src/App/DTO/ApiResponse.php
|
|
src/App/DTO/Category.php
|
|
src/App/DTO/Collection.php
|
|
src/App/DTO/Collection1.php
|
|
src/App/DTO/Collection10.php
|
|
src/App/DTO/Collection11.php
|
|
src/App/DTO/Collection12.php
|
|
src/App/DTO/Collection13.php
|
|
src/App/DTO/Collection14.php
|
|
src/App/DTO/Collection15.php
|
|
src/App/DTO/Collection16.php
|
|
src/App/DTO/Collection17.php
|
|
src/App/DTO/Collection18.php
|
|
src/App/DTO/Collection19.php
|
|
src/App/DTO/Collection2.php
|
|
src/App/DTO/Collection20.php
|
|
src/App/DTO/Collection21.php
|
|
src/App/DTO/Collection22.php
|
|
src/App/DTO/Collection23.php
|
|
src/App/DTO/Collection24.php
|
|
src/App/DTO/Collection25.php
|
|
src/App/DTO/Collection26.php
|
|
src/App/DTO/Collection27.php
|
|
src/App/DTO/Collection28.php
|
|
src/App/DTO/Collection29.php
|
|
src/App/DTO/Collection3.php
|
|
src/App/DTO/Collection30.php
|
|
src/App/DTO/Collection31.php
|
|
src/App/DTO/Collection32.php
|
|
src/App/DTO/Collection33.php
|
|
src/App/DTO/Collection34.php
|
|
src/App/DTO/Collection35.php
|
|
src/App/DTO/Collection36.php
|
|
src/App/DTO/Collection4.php
|
|
src/App/DTO/Collection5.php
|
|
src/App/DTO/Collection6.php
|
|
src/App/DTO/Collection7.php
|
|
src/App/DTO/Collection8.php
|
|
src/App/DTO/Collection9.php
|
|
src/App/DTO/FindPetsByStatusQueryData.php
|
|
src/App/DTO/FindPetsByTagsQueryData.php
|
|
src/App/DTO/LoginUserQueryData.php
|
|
src/App/DTO/Order.php
|
|
src/App/DTO/Pet.php
|
|
src/App/DTO/Tag.php
|
|
src/App/DTO/User.php
|
|
src/App/Factory.php
|
|
src/App/Handler/Pet.php
|
|
src/App/Handler/PetFindByStatus.php
|
|
src/App/Handler/PetFindByTags.php
|
|
src/App/Handler/PetPetId.php
|
|
src/App/Handler/PetPetIdUploadImage.php
|
|
src/App/Handler/StoreInventory.php
|
|
src/App/Handler/StoreOrder.php
|
|
src/App/Handler/StoreOrderOrderId.php
|
|
src/App/Handler/User.php
|
|
src/App/Handler/UserCreateWithArray.php
|
|
src/App/Handler/UserCreateWithList.php
|
|
src/App/Handler/UserLogin.php
|
|
src/App/Handler/UserLogout.php
|
|
src/App/Handler/UserUsername.php
|
|
src/App/Middleware/InternalServerError.php
|