简体   繁体   中英

error while extending the bundle ClassNotFoundException

I just created a new 2.8 Symfony project then added SonataAdminBundle when I tried to add SonataMediaundle as you can see in the screenshot after completing step 2.5 in the documentation I get this error that I just couldn't explain.

图片说明在这里

图片说明在这里

(I'm a new user so I can't add pictures yet so you'll only see the link)

first of all, Cerad, the problem solved thanks to you, by changing the autoload in my composer.json file from this:

...
"autoload": {
    "psr-4": {
        "AppBundle\\": "src/AppBundle"
    },

To this:

...
"autoload": {
    "psr-4": {
        "": "src/"
    },

then run command:

composer dumpautoload

and Voilà everything come back to work.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM