We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello I switched to Lumen 9.1.6. I had composer saying that laravel-cors has to be replaced. Currently, I have in app.php :
<?php $app->configure('cors'); $app->middleware([ Fruitcake\Cors\HandleCors::class, ]); $app->register(Fruitcake\Cors\CorsServiceProvider::class);
I have replaced \Fruitcake\Cors\HandleCors::class, with \Illuminate\Http\Middleware\HandleCors::class but what about the service provider ?
\Fruitcake\Cors\HandleCors::class
\Illuminate\Http\Middleware\HandleCors::class
The text was updated successfully, but these errors were encountered:
+1 I've same problem
Sorry, something went wrong.
No branches or pull requests
Hello I switched to Lumen 9.1.6. I had composer saying that laravel-cors has to be replaced. Currently, I have in app.php :
I have replaced
\Fruitcake\Cors\HandleCors::class
, with\Illuminate\Http\Middleware\HandleCors::class
but what about the service provider ?The text was updated successfully, but these errors were encountered: