Reputation: 3
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,
Any suggestion please!!!!!!
Upvotes: 0
Views: 101
Reputation: 3
thinks i also execut the command bellow composer dump-autoload.
Problem resolve.
Upvotes: 0
Reputation: 2180
In your composer.json
replace your autoload part with:
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
Upvotes: 1