Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add custom generator support to open api spec #912

Open
wants to merge 8 commits into
base: v5
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions config/scribe.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@
'overrides' => [
// 'info.version' => '2.0.0',
],

// Additional generators to use when generating the OpenAPI spec.
// Should extend `Knuckles\Scribe\Writing\OpenApiSpecGenerators\OpenApiGenerator`.
'generators' => [],
],

'groups' => [
Expand Down
1 change: 1 addition & 0 deletions src/Config/Output.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public static function postman(
public static function openApi(
bool $enabled = true,
array $overrides = [],
array $generators = [],
): array
{
return get_defined_vars();
Expand Down
645 changes: 39 additions & 606 deletions src/Writing/OpenAPISpecWriter.php

Large diffs are not rendered by default.

Loading
Loading