SlideShare a Scribd company logo
3
Migrare
a
Michele Orselli
CTO@Ideato
_orso_
micheleorselli / ideatosrl
mo@ideato.it
Migrare a Symfony 3
Migrare a Symfony 3
Developing waterproof
PHP Applications
Migrare a Symfony 3
Migrare a Symfony 3
Remember sf1 to Sf2
migration?
Migrare a Symfony 3
Migrare a Symfony 3
Symfony 3 will not be
a revolution
s
Fixing architectural mitakes
• synchronized service
• form
• validation api
• new directory layout
• no more assetic by default?
• remove deprecated code
king
Brea Changes
https://twitter.com/symfony_en/status/651327366636118016
Release Process
http://symfony.com/doc/current/contributing/community/releases.html
http://symfony.com/roadmap
Semantic versioning (~ 2.4)
X . Y . Z
Semantic versioning (~ 2.4)
X . Y . Zmajor version
allows BC Break
Semantic versioning (~ 2.4)
X . Y . Zminor version
new features
no BC
Semantic versioning (~ 2.4)
X . Y . Zbug fix
security fix
LTS version
Migrare a Symfony 3
Dealing with
deprecated stuff
Migrare a Symfony 3
1 @trigger_error(
2 ’getDefaultOptions() is deprecated since version 2.1
and will be removed in 2.3. Use setDefaultOptions()
instead.’, E_USER_DEPRECATED
3 );
1 set_error_handler(function($type, $msg) {
2 file_put_contents(
3 './deprecated.log',
4 $msg //debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
5 });
Migrare a Symfony 3
Migrare a Symfony 3
1 <service id="bar" class="stdClass">
2 <deprecated>
3 The "%service_id%" service is deprecated!
4 </deprecated>
5 </service>
Migrare a Symfony 3
Migrare a Symfony 3
How to migrate
Migrare a Symfony 3
sf < 2.3: upgrade to 2.3
2.3 <= sf <= 2.6: upgrade to 2.7/2.8
sf < 2.3: upgrade to 2.3
2.3 <= sf <= 2.6: upgrade to 2.7/2.8
Min PHP version is 5.5.x
Make your code deprecation free
- fix your code
- update vendors if needed
http://symfony.com/doc/current/cookbook/upgrade/index.html
https://knpuniversity.com/blog/upgrading-symfony-2.7
1 {
2 "...": "...",
3
4 "require": {
5 "symfony/symfony": "3.0.*",
6 },
7 "...": "..."
8 }
$ composer update symfony/symfony --with-
dependencies
https://github.com/symfony/symfony/blob/master/UPGRADE-3.0.md
What about 3rd-party
Bundles?
Migrare a Symfony 3
Migrare a Symfony 3
Migrare a Symfony 3
1 "require": {
2 "php": ">=5.4.0",
3 "psr/log": "^1.0",
4 "symfony/framework-bundle": "^2.7|^3.0",
5 "symfony/routing": "^2.7|^3.0",
6 "doctrine/inflector": "^1.0",
7 "willdurand/negotiation": "^2.0",
8 "willdurand/jsonp-callback-validator": "^1.0"
9 },
10
FOSUserBundle
FOSRestBundle
FOSElasticaBundle
KnpMenuBundle
SonataAdminBundle
HWIOAuthBundle
JMSSecurityExtraBundle
JMSSerializerBundle
JMSI18nRoutingBundle
LiipImagineBundle
NelmioApiDocBundle
VichUploaderBundle
KnpGaufretteBundle
Migrare a Symfony 3
Thanks!
scream https://www.flickr.com/photos/karochkin/3674906958
keep calm: https://en.wikipedia.org/wiki/
File:Keep_Calm_and_Carry_On_Poster.svg
cat https://c1.staticflickr.com/5/4005/4406527325_a0213d1fc0_b.jpg
https://c1.staticflickr.com/9/8534/8671901426_a940c6940f_b.jpg

More Related Content

PDF
Symfony 3 est sorti! Forum PHP 2015
PDF
Migrating to Symfony 3.0
PDF
Demonstration: Building a dapp on Ethereum with Ganache and Metamask
ODP
Git 101, or, how to sanely manage your Koha customizations
PPTX
.net frameworks
PPTX
Developing highly scalable applications with Symfony and RabbitMQ
PDF
Implementing data sync apis for mibile apps @cloudconf
PDF
Node.js - Server Side Javascript
Symfony 3 est sorti! Forum PHP 2015
Migrating to Symfony 3.0
Demonstration: Building a dapp on Ethereum with Ganache and Metamask
Git 101, or, how to sanely manage your Koha customizations
.net frameworks
Developing highly scalable applications with Symfony and RabbitMQ
Implementing data sync apis for mibile apps @cloudconf
Node.js - Server Side Javascript

Similar to Migrare a Symfony 3 (20)

PDF
SymfonyCon Cluj 2017 - Symfony at OpenSky
PDF
Sunshine php practical-zf1-zf2-migration
PDF
From * to Symfony2
PDF
Zend con practical-zf1-zf2-migration
PDF
Beyond symfony 1.2 (Symfony Camp 2008)
PDF
Osiąganie mądrej architektury z Symfony2
PDF
Symfony Live San Francisco 2017 - Symfony @ OpenSky
PDF
Hopping in clouds - phpuk 17
PDF
Rebuilding our Foundation
PDF
Symfony quick tour_2.3
PDF
The Art of Doctrine Migrations
PDF
eZPublish meets Simfony2 - phpDay2013
PDF
Symfony Live 09 Symfony 2
PPT
Why Managed Service Providers Should Embrace Container Technology
PPT
Workshop: Symfony2 Intruduction: (Controller, Routing, Model)
PDF
Puppet for Sys Admins
PDF
Symfony metabook 2.0
PDF
PHP Frameworks and Symfony
PDF
Migration of a legacy project to Symfony
PDF
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
SymfonyCon Cluj 2017 - Symfony at OpenSky
Sunshine php practical-zf1-zf2-migration
From * to Symfony2
Zend con practical-zf1-zf2-migration
Beyond symfony 1.2 (Symfony Camp 2008)
Osiąganie mądrej architektury z Symfony2
Symfony Live San Francisco 2017 - Symfony @ OpenSky
Hopping in clouds - phpuk 17
Rebuilding our Foundation
Symfony quick tour_2.3
The Art of Doctrine Migrations
eZPublish meets Simfony2 - phpDay2013
Symfony Live 09 Symfony 2
Why Managed Service Providers Should Embrace Container Technology
Workshop: Symfony2 Intruduction: (Controller, Routing, Model)
Puppet for Sys Admins
Symfony metabook 2.0
PHP Frameworks and Symfony
Migration of a legacy project to Symfony
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
Ad

More from Michele Orselli (20)

PDF
Tackling Tech Debt with Rector
PDF
Comunicare, condividere e mantenere decisioni architetturali nei team di svil...
PDF
A dive into Symfony 4
PDF
A recommendation engine for your applications codemotion ams
PDF
A recommendation engine for your applications phpday
PDF
A recommendation engine for your php application
PDF
Symfony e micro (non così tanto) services
PDF
Hopping in clouds: a tale of migration from one cloud provider to another
PDF
Vagrant for real (codemotion rome 2016)
PDF
Vagrant for real codemotion (moar tips! ;-))
PDF
Vagrant for real
PDF
Server side data sync for mobile apps with silex
PDF
Continuous, continuous, continuous
PDF
Deploy a PHP App on Google App Engine
PDF
Implementing Server Side Data Synchronization for Mobile Apps
PDF
Deploy a php app on Google App Engine
PDF
PDF
Manage a project portfolio
PDF
Developing sustainable php projects
PDF
Zend Framework 2 per chi viene da Symfony2
Tackling Tech Debt with Rector
Comunicare, condividere e mantenere decisioni architetturali nei team di svil...
A dive into Symfony 4
A recommendation engine for your applications codemotion ams
A recommendation engine for your applications phpday
A recommendation engine for your php application
Symfony e micro (non così tanto) services
Hopping in clouds: a tale of migration from one cloud provider to another
Vagrant for real (codemotion rome 2016)
Vagrant for real codemotion (moar tips! ;-))
Vagrant for real
Server side data sync for mobile apps with silex
Continuous, continuous, continuous
Deploy a PHP App on Google App Engine
Implementing Server Side Data Synchronization for Mobile Apps
Deploy a php app on Google App Engine
Manage a project portfolio
Developing sustainable php projects
Zend Framework 2 per chi viene da Symfony2
Ad

Recently uploaded (20)

PPTX
ai tools demonstartion for schools and inter college
PPTX
history of c programming in notes for students .pptx
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
AI in Product Development-omnex systems
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
Essential Infomation Tech presentation.pptx
PDF
System and Network Administraation Chapter 3
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
Digital Strategies for Manufacturing Companies
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
ai tools demonstartion for schools and inter college
history of c programming in notes for students .pptx
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
AI in Product Development-omnex systems
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Essential Infomation Tech presentation.pptx
System and Network Administraation Chapter 3
2025 Textile ERP Trends: SAP, Odoo & Oracle
Understanding Forklifts - TECH EHS Solution
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Upgrade and Innovation Strategies for SAP ERP Customers
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Odoo POS Development Services by CandidRoot Solutions
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Digital Strategies for Manufacturing Companies
How Creative Agencies Leverage Project Management Software.pdf
Softaken Excel to vCard Converter Software.pdf
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Which alternative to Crystal Reports is best for small or large businesses.pdf

Migrare a Symfony 3