Skip to content

Instantly share code, notes, and snippets.

@adrien-f
Created April 11, 2016 13:11
Show Gist options
  • Save adrien-f/9860e51333e9932e00c10b9809c07d2a to your computer and use it in GitHub Desktop.
Save adrien-f/9860e51333e9932e00c10b9809c07d2a to your computer and use it in GitHub Desktop.
Symfony 3 Generator Tree
.
├── .DS_Store
├── Dockerfile
├── README.md
├── app
│   ├── .htaccess
│   ├── AppCache.php
│   ├── AppKernel.php
│   ├── Resources
│   │   └── views
│   │   ├── base.html.twig
│   │   └── default
│   │   └── index.html.twig
│   ├── autoload.php
│   └── config
│   ├── config.yml
│   ├── config_dev.yml
│   ├── config_prod.yml
│   ├── config_test.yml
│   ├── parameters.yml
│   ├── parameters.yml.dist
│   ├── routing.yml
│   ├── routing_dev.yml
│   ├── security.yml
│   └── services.yml
├── bin
│   ├── console
│   └── symfony_requirements
├── composer.json
├── composer.lock
├── docker-compose.yml
├── phpunit.xml.dist
├── src
│   ├── .htaccess
│   └── AppBundle
│   ├── AppBundle.php
│   └── Controller
│   └── DefaultController.php
├── tests
│   └── AppBundle
│   └── Controller
│   └── DefaultControllerTest.php
├── var
│   ├── SymfonyRequirements.php
│   ├── bootstrap.php.cache
│   ├── cache
│   │   ├── .gitkeep
│   │   └── dev
│   │   ├── annotations
│   │   ├── appDevDebugProjectContainer.php
│   │   ├── appDevDebugProjectContainer.php.meta
│   │   ├── appDevDebugProjectContainer.xml
│   │   ├── appDevDebugProjectContainerCompiler.log
│   │   ├── classes.map
│   │   └── doctrine
│   │   └── orm
│   │   └── Proxies
│   ├── logs
│   │   ├── .gitkeep
│   │   └── dev.log
│   └── sessions
│   ├── .gitkeep
│   └── dev
└── web
├── .htaccess
├── app.php
├── app_dev.php
├── apple-touch-icon.png
├── bundles
│   └── framework -> ../../vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Resources/public/
├── config.php
├── favicon.ico
└── robots.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment