1. Go to this page and download the library: Download nijens/openapi-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
nijens / openapi-bundle example snippets
// src/Kernel.php
// ...
class Kernel extends BaseKernel
{
public function registerBundles(): iterable
{
return [
// ...
new Nijens\OpenapiBundle\NijensOpenapiBundle(),
];
}
// ...
}
use Nijens\OpenapiBundle\Routing\RouteContext;
use Nijens\OpenapiBundle\Serialization\SerializationContextBuilderInterface;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Serializer\SerializerInterface;
class ExampleController
{
public function __invoke(
Request $request,
SerializerInterface $serializer,
SerializationContextBuilderInterface $serializationContextBuilder
): JsonResponse {
$pet = new Pet();
$serializationContext = $serializationContextBuilder->getContextForSchemaObject(
'Pet',
$request->attributes->get(RouteContext::REQUEST_ATTRIBUTE)[RouteContext::RESOURCE]
);
return JsonResponse::fromJsonString(
$serializer->serialize($pet, 'json', $serializationContext)
);
}
}