Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP7 compatibility with Symfony3?

Tags:

php-7

symfony

With the release of both PHP7 and Symfony3 this week, have Symfony3 been developed with PHP7 in mind?

To put it another way, if we have PHP7 installed and are starting a new Symfony3 project from scratch, do we run the risk of facing migration problems from within the Symfony framework?

like image 890
Bendy Avatar asked Dec 03 '15 15:12

Bendy


1 Answers

PHP 7 is mostly backward compatible with 5.x versions. Most of the changes that are incompatible with previous versions consist of the removal of quirky features anyway. This is usually not the type of stuff SF developers tend to use.

And, yes, SF3 has been developed with PHP7 (and HHVM, by the way) in mind.

like image 184
lxg Avatar answered Oct 18 '22 17:10

lxg