fefe
fefe

Reputation: 9055

Laravel workbench composer update

I added to my composer.json the following line inside of my workbench but dosn't take any effect the controllers are not mapped? How do I republish or reload the composer.json

"autoload": {
     "classmap": [
        "src/controllers"
    ],
}

I already tried

php artisan dump-autoload

Upvotes: 2

Views: 444

Answers (1)

Sebastian Kraft
Sebastian Kraft

Reputation: 119

Run composer update inside your workbench

Upvotes: 3

Related Questions