23 lines
647 B
JavaScript
23 lines
647 B
JavaScript
module.exports = {
|
|
title: "Swagger-PHP v3.x",
|
|
base: "/swagger-php/",
|
|
description:
|
|
"Generate interactive OpenAPI documentation for your RESTful API using doctrine annotations.",
|
|
themeConfig: {
|
|
sidebar: "auto",
|
|
nav: [
|
|
{ text: "Guide", link: "/Getting-started" },
|
|
{ text: "Supported Annotations", link: "/Supported-annotations" },
|
|
{
|
|
text: "OpenApi",
|
|
link: "https://swagger.io/docs/specification/about/"
|
|
},
|
|
{
|
|
text: "Specification",
|
|
link: "http://swagger.io/specification/"
|
|
},
|
|
{ text: "Github", link: "https://github.com/zircote/swagger-php" },
|
|
]
|
|
}
|
|
};
|