So... If I install a package for instance: "laracasts/utilities", I am supposed to add the require line to composer.json and add the service provider to app.php:
/Laracasts\Utilities\JavaScript\JavaScriptServiceProvider::class
If I add the class to the service provider list and then run the command "composer update" it gives me an error because that class is not found. No problem, comment out that line, install the package, uncomment the line and we are all set.
However, when I deploy the code and run a composer update on the staging / production server it will throw that error and I don't want to have to modify code other than just updating the code with git pull.
I hope that made sense. Kind of a chicken before egg thing, seems someone must have a good solution to this.
Thanks,
Caleb