Download the PHP package rogervila/openapi-laravel without Composer
On this page you can find all versions of the php package rogervila/openapi-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rogervila/openapi-laravel
More information about rogervila/openapi-laravel
Files in rogervila/openapi-laravel
Package openapi-laravel
Short Description Validate HTTP Requests and Responses with OpenAPI Specs
License MIT
Informations about the package openapi-laravel
OpenAPI Laravel
About
Validate HTTP Requests and Responses with OpenAPI Specs.
Install
Require the package with composer.
Laravel will autodiscover the service provider located in \LaravelOpenAPI\ServiceProvider
.
Setup
The package handles HTTP requests via Specification and Request classes.
OpenAPI Specifications
First, create a Specification class.
OpenAPI Requests
Once a Specification is set, You can create OpenAPI Request and define which specification it should use.
The package will handle the request validation based on the specification.
- If it does not match, it will return a "
422
validation error". - If the specification is missing, it will return a "
501
not implemented" error.
OpenAPI Requests extend from \Illuminate\Foundation\Http\FormRequest
, so you might implement additional rules and authorization as defined on laravel docs
Usage
The package includes the \LaravelOpenAPI\OpenAPI
class as an accessor for all the package features.
Check this repository's laravel
folder to see the package usage on a real laravel project.
Example
This example defines a FindPetByIdController controller which uses the package to handle the request and the response.
Author
Created by Roger Vilà
License
OpenAPI Laravel is open-sourced software licensed under the MIT license.
All versions of openapi-laravel with dependencies
league/openapi-psr7-validator Version ^0.18.0
nyholm/psr7 Version ^1.5
symfony/cache Version ^6.0
symfony/psr-http-message-bridge Version ^2.1