mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
Support for versions of Doctrine that work on PHP5.x and PHP7.0 #5751
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @alexpott on GitHub (Oct 27, 2017).
Originally assigned to: @Ocramius on GitHub.
I was reading http://www.doctrine-project.org/2017/07/25/php-7.1-requirement-and-composer.html with interest and I was wondering what is the Doctrine policy for supporting doctrine-common and doctrine-annotations on these older versions of PHP? Will 2.7.x and 1.4.x get bug fixes, or just security fixes or no fixes at all?
The reason I'm asking is that Symfony 3.4 will be supported until 2021 and it'll not drop PHP5.x support till then. I work a lot on the Drupal project and we're trying to decide what to do with PHP5.x support and one of our concerns is security support on older versions of Doctrine. Like many PHP developers I'm always excited to be using the latest version but that excitement is not shared by every user and not every user has the ability to get new OS versions in production (Ubuntu will be support PHP5.x till 2019 probably - EOL of 14.04 LTS).
@Ocramius commented on GitHub (Oct 27, 2017):
We fix security issues as far back as we can, so that's not a problem.
We don't do bugfix LTS.
Bug fixes will only land in the current release, not previous ones.
@alexpott commented on GitHub (Oct 27, 2017):
Thanks!