cebe / php-openapi

Read and write OpenAPI yaml/json files and make the content accessible in PHP objects.
MIT License
464 stars 87 forks source link

Implement JsonSerializable so OpenApi instance can be serialized using json_encode() #183

Open grimmdude opened 1 year ago

grimmdude commented 1 year ago

Allows the ability to serialize OpenApi instance like this:

$openApi = Reader::readFromYaml($yaml);
$json = json_encode($openApi);