Richard Melo
@allucardster
"It's the symfony's fourth version"
"Symfony it's a full stack framework to develop web applications"
"Because composition is better than inheritance!"
(in a few words)
It's a composer plugin that help us to install and manage Symfony dependencies.
Install bundle
Attach bundle to app kernel
Configure the bundle
Symfony Flex Recipes
# For example:
composer require twig├── bin
├── config
│ ├── packages
│ │ ├── dev
│ │ ├── prod
│ │ ├── test
│ │ ├── doctrine_migrations.yaml
│ │ ├── doctrine.yaml
│ │ ├── framework.yaml
│ │ ├── routing.yaml
│ │ └── twig.yaml
│ ├── routes
│ │ ├── dev
│ │ └── annotations.yaml
│ ├── bundles.php
│ ├── routes.yaml
│ └── services.yaml
├── public
│ └── index.php
├── src
│ ├── Controller
│ ├── Entity
│ ├── Migrations
│ ├── Repository
│ └── Kernel.php
├── templates
│ └── base.html.twig
├── var
│ ├── cache
│ └── log
├── vendor
├── composer.json
├── composer.lock
├── .env
├── .env.dist
└── symfony.lockFor web development using: