Skip to content

v0.1.6

Latest
Compare
Choose a tag to compare
@hms5232 hms5232 released this 18 Aug 07:48
· 6 commits to main since this release

What's new

  • Support middleware applying on package route group.
    return [
        'middleware' => [
            //
        ],
    ];
  • Support custom html title of Swagger UI/Editor.
    return [
        'ui' => [
            'title' => env('LARAVEL_SWAGGER_UI_TITLE'),  // add this line
        ],
        'editor' => [
            'title' => env('LARAVEL_SWAGGER_EDITOR_TITLE'),  // add this line
        ],
    ];

See detail comment at config file. And you can re-run publish command with --force flag to override and update the config file.


Thanks for these time, Vicky. Take care.