Top "Swagger-php" questions

The php swagger annotation and parsing library

Converting Swagger specification JSON to HTML documentation

For some REST APIs written in PHP, I was asked to create Swagger documentation, and since I was not aware …

yaml swagger swagger-php
RESTful API Doc using SLIM and SWAGGER?

I am new to this stuff but I love it. I made a little REST Api using the Slim Framework. …

php slim swagger-php
Swagger PHP - how to define a nested property?

I'm using Swagger PHP and most of the definitions are easy to define, but I'm having an issue with a …

php swagger-php
Generating REST documentation in a Codeigniter project

I have a REST webservice using Codeigniter and using this lib : https://github.com/chriskacerguis/codeigniter-restserver I want to generate …

php web-services codeigniter rest swagger-php
Issue 'Authorization: Bearer <token>' in a Swagger openAPI Annotations

I use these packages (installed via composer) "swagger-api/swagger-ui": "^3.0", "zircote/swagger-php": "~2.0|3.*" In my def controller I have these annotations /** * @OA\…

php swagger openapi swagger-php
Can I make swagger-php use arrays on the query string?

I use Swagger-php. When I define a parameter that's on the query string it can be an array. But from …

php swagger swagger-ui swagger-php
How to fix ErrorException: @OA\Items() is required when @OA\Property() has type "array"?

I've tried to add a nested array of arbitrary types. These are my annotations: * @OA\Property( * @OA\Schema( * type="array", * @…

php openapi swagger-php
How to add accept application/json header for swagger-php OpenApi

I'm use L5-Swagger 5.7.* package (wrapper of Swagger-php) and tried describe Laravel REST API. So, my code like this: /** * @OA\…

php laravel openapi swagger-php