config.js 573 B

123456789101112131415161718192021
  1. module.exports = {
  2. title: "Swagger-PHP v3.x",
  3. base: "/swagger-php/",
  4. description:
  5. "Generate interactive OpenAPI documentation for your RESTful API using doctrine annotations.",
  6. themeConfig: {
  7. sidebar: "auto",
  8. nav: [
  9. { text: "Guide", link: "/Getting-started" },
  10. {
  11. text: "OpenApi",
  12. link: "https://swagger.io/docs/specification/about/"
  13. },
  14. {
  15. text: "Specification",
  16. link: "http://swagger.io/specification/"
  17. },
  18. { text: "Github", link: "https://github.com/zircote/swagger-php" }
  19. ]
  20. }
  21. };