Slide 9
Slide 9 text
app/ is the application folder
src/ is the libraries folder
web/ is the general public folder
contains the configuration, templates and
generated files
contains the PHP code of your application
contains front controllers and web assets
(images, Javascripts, stylesheets, ...)
.
├─ app/
│ ├─ AppCache.php
│ ├─ AppKernel.php
│ ├─ cache/
│ ├─ config/
│ ├─ console
│ ├─ logs/
│ ├─ autoload.php
│ ├─ check.php
│ ├─ phpunit.xml.dist
│ └─ Resources/
│ └─ views/
│ └─ admin/
├─ src/
│ └─ AppBundle/
├─ vendor/
└─ web/
├─ config.php
├─ app.php
└─ app_dev.php
vendor/ hosts third party code
contains libraries and resources installed with
Composer utility tool.