Support the ongoing development of Laravel.io →
Configuration Packages Architecture

Hi everybody. I have a problem with developing my own package for L4 with workbench. (Decided to rewrite my app to be a package)

So my fail is that i can't make laravel debugbar (https://github.com/barryvdh/laravel-debugbar) to work inside of my package.

I've created package (workbench) according to L4 guide, then added the dependency for laravel-debugbar into composer.json of my workbench. After all i can't make debugbar to be visible inside a controller.

I have login controller with a method where i want debugbar to be always disabled

public function index() { \Debugbar::disable(); }

Got error <Class 'Debugbar' not found>.

What i've missed?

PS: sorry for ugly explanation in english =\

Last updated 2 years ago.
0

Hi,

I'm having exactly the same problem.

I am developing my own package and I added a third party depedency to my package composer.json. But when I try to use a class from the third party package, I get a class not found exception.

Laravel seems to lookup for the class in my package namespace and not in vendors.

@psilocyberunner: Did you find any solution?

Best regards

Last updated 2 years ago.
0

I had to run "php artisan dump-autoload" to get my workbench vendor stuff to show up.

Or run composer dump-autoload in the workbench folder.

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.