Kia Kaha
Kia Kaha

Reputation: 3

Probleme with Symfony 3.3.8 bundle creation

i try to create a bundle by console with symfony 3.3.8 after this version i dont have any problem with that but now i have one,

image1 enter image description here

image2 enter image description here

Any suggestion please!!!!!!

Upvotes: 0

Views: 101

Answers (2)

Kia Kaha
Kia Kaha

Reputation: 3

thinks i also execut the command bellow composer dump-autoload.

Problem resolve.

Upvotes: 0

kunicmarko20
kunicmarko20

Reputation: 2180

In your composer.json

replace your autoload part with:

"autoload": {
    "psr-4": {
        "": "src/"
    },
    "classmap": [
        "app/AppKernel.php",
        "app/AppCache.php"
    ]
},

Upvotes: 1

Related Questions