Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Getting ready for Symfony 4

Getting ready for Symfony 4

This is a quick introduction to the Symfony release schedule and some of the bigger changes coming with Symfony 3.4/4.0. The main part of the presentation was done on a sample project and therefore is unfortunately not part of the slides.

Denis Brumann

October 04, 2017
Tweet

More Decks by Denis Brumann

Other Decks in Programming

Transcript

  1. Version Release date End of Maintenance End of Life 2.8

    LTS 11/2015 11/2018 11/2019 3.3 05/2017 01/2018 07/2018 3.4 LTS 11/2017 11/2020 11/2021
  2. Version Release date End of Maintenance End of Life 2.8

    LTS 11/2015 11/2018 11/2019 3.3 05/2017 01/2018 07/2018 4.0 11/2017 07/2018 01/2019
  3. . ├── README.md ├── app ├── bin ├── composer.json ├──

    composer.lock ├── phpunit.xml.dist ├── src ├── tests ├── var ├── vendor └── web SYMFONY 3 SYMFONY 4 . ├── Makefile ├── composer.json ├── composer.lock ├── config │ ├── bundles.php │ ├── packages │ ├── routes.yaml │ └── services.yaml ├── public │ └── index.php ├── src │ ├── Controller │ └── Kernel.php └── vendor