swagger-v3.php 947 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @OA\OpenApi(
  4. * @OA\Info(
  5. * version="1.0.0",
  6. * title="Swagger Petstore",
  7. * description="This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.",
  8. * termsOfService="http://swagger.io/terms/",
  9. * @OA\Contact(
  10. * email="apiteam@swagger.io"
  11. * ),
  12. * @OA\License(
  13. * name="Apache 2.0",
  14. * url="http://www.apache.org/licenses/LICENSE-2.0.html"
  15. * )
  16. * ),
  17. * @OA\Server(
  18. * description="OpenApi host",
  19. * url="https://petstore.swagger.io/v3"
  20. * ),
  21. * @OA\ExternalDocumentation(
  22. * description="Find out more about Swagger",
  23. * url="http://swagger.io"
  24. * )
  25. * )
  26. */