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 =\
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
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.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community