Search by

krok / laravel-oas

krok

Laravel OpenAPI Swagger

2.1.0 2026-08-18 12:28 UTC

This package is auto-updated.

Last update: 2026-08-18 12:29:18 UTC


README

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist krok/laravel-oas --dev

License

MIT license.

Install

php artisan oas:install

Configuring

bootstrap/app.php

return Application::configure(basePath: dirname(__DIR__))
    ->withRouting(
        web: [
            __DIR__ . '/../routes/web.php',
            __DIR__ . '/../routes/oas.php',
        ],
        api: __DIR__ . '/../routes/api.php',
        commands: __DIR__ . '/../routes/console.php',
        health: '/up',
    )
    ->withMiddleware(function (Middleware $middleware): void {
        //
    })
    ->withExceptions(function (Exceptions $exceptions): void {
        //
    })->create();

Removing the dependency

php composer.phar remove krok/laravel-oas --dev