What is Laravel service discovery in package development?
Updated May 16, 2026
Short answer
Service discovery automatically loads package service providers and facades without manual registration.
Deep explanation
Laravel service discovery allows packages to auto-register their service providers using composer.json 'extra.laravel' configuration. This removes the need for manual entry in config/app.php. It improves developer experience and enables plug-and-play package architecture. Laravel scans installed packages and boots them automatically when defined correctly.
Unlock with a Pro subscription to view this section.
View pricingReal-world example
No real-world example available yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProCommon mistakes
No common mistakes listed yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProFollow-up questions
No follow-up questions available yet.
Unlock with a Pro subscription to view this section.
Upgrade to Pro