Download the PHP package bayfrontmedia/openapi-parser without Composer
On this page you can find all versions of the php package bayfrontmedia/openapi-parser. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bayfrontmedia/openapi-parser
More information about bayfrontmedia/openapi-parser
Files in bayfrontmedia/openapi-parser
Package openapi-parser
Short Description PHP OpenAPI specification parser
License MIT
Homepage https://github.com/bayfrontmedia/openapi-parser
Informations about the package openapi-parser
OpenAPI Parser
PHP OpenAPI specification parser.
This library supports OAS 3.1, and resolves internal OpenAPI specification references. The OpenAPI specification can then be parsed into PHP objects.
- License
- Author
- Requirements
- Installation
- Usage
License
This project is open source and available under the MIT License.
Author
Requirements
- PHP >= 8.0 (Tested up to
8.4
) yaml
PHP extension
Installation
Usage
The OpenApiSpec
class is used to parse JSON and YAML files into an array, as well as resolving any internal references.
The resolved specification array can then be used to create an OpenApiObject
instance.
All OpenAPI object class instances implement ObjectInterface
.
The ObjectInterface
includes a getObject
method to return the entire object as an array,
and a validate()
method to validate against the OpenAPI specification,
but all validation functions are currently rudimentary and should not be relied upon.
It is advised to use this library with an OpenAPI specification which has already been tested as valid.
NOTE: The
resolve
method can be quite slow depending on the size of the OpenAPI specification. It is strongly suggested to save/cache the resolved specification to use in production, or to only resolve parts of the specification as needed.
Example
To parse from a .yaml
file, the yaml
PHP extension must be installed to use the yaml_parse
function.
Additional documentation coming soon.
All versions of openapi-parser with dependencies
ext-yaml Version *
bayfrontmedia/php-array-helpers Version ^2.0
bayfrontmedia/php-validator Version ^4.0