The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist krok/laravel-oas --dev
php artisan oas:install
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