We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc9814 commit cd33096Copy full SHA for cd33096
CHANGELOG.md
@@ -1 +0,0 @@
1
-# v3.0.0
resources/definitions/openapi.php
@@ -17,12 +17,15 @@
17
use function DI\get;
18
19
return [
20
+ 'router.openapi.initial_document.info' => [
21
+ 'title' => 'API',
22
+ 'version' => '1.0.0',
23
+ ],
24
+
25
'router.openapi.initial_document' => [
26
'openapi' => OpenApiConfiguration::VERSION,
- 'info' => [
- 'title' => 'API',
- 'version' => '1.0.0',
- ],
27
+ 'info' => get('router.openapi.initial_document.info'),
28
+ 'jsonSchemaDialect' => OpenApiConfiguration::JSON_SCHEMA_DIALECT,
29
],
30
31
'router.openapi.initial_operation' => [
0 commit comments