swagger-v2.php 919 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * @SWG\Swagger(
  4. * schemes={"http"},
  5. * host="petstore.swagger.io",
  6. * basePath="/v2",
  7. * @SWG\Info(
  8. * version="1.0.0",
  9. * title="Swagger Petstore",
  10. * 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.",
  11. * termsOfService="http://swagger.io/terms/",
  12. * @SWG\Contact(
  13. * email="apiteam@swagger.io"
  14. * ),
  15. * @SWG\License(
  16. * name="Apache 2.0",
  17. * url="http://www.apache.org/licenses/LICENSE-2.0.html"
  18. * )
  19. * ),
  20. * @SWG\ExternalDocumentation(
  21. * description="Find out more about Swagger",
  22. * url="http://swagger.io"
  23. * )
  24. * )
  25. */