Closed
Description
There is an inconsistency between best practices and bundles documentation regarding the directory structure
https://symfony.com/doc/5.4/bundles/best_practices.html#directory-structure
<your-bundle>/
├── config/
├── docs/
│ └─ index.md
├── public/
├── src/
│ ├── Controller/
│ ├── DependencyInjection/
│ └── AcmeBlogBundle.php
├── templates/
├── tests/
├── translations/
├── LICENSE
└── README.md
https://symfony.com/doc/current/bundles.html#bundle-directory-structure
I would LOVE to use the new directory structure, get rid of the Resources level directory and use config, templates and public, just like the main application. But I've never been able to get that to work. If there's a setting somewhere to use the Best Practices directory structure (skip the /Resources), can that be documented?