Recently in One of the symfony dumps I gathered from my IT team had an issue due to some reason "Generate Bundle" option was not working from app/console list -- raw
Solution :
Add following lines in File composer.json
"required-dev":{
"sensio/generator-bundle": "~2.3"
}
File AppKernal.php should have
new Sensio\Bundle\GeneratorBundle\SensioGenerator();
That's it
Solution :
Add following lines in File composer.json
"required-dev":{
"sensio/generator-bundle": "~2.3"
}
File AppKernal.php should have
new Sensio\Bundle\GeneratorBundle\SensioGenerator();
That's it
No comments:
Post a Comment