Skip to content

Commit

Permalink
#574 remove support for PHP 7.4.1 and newer
Browse files Browse the repository at this point in the history
PHP 7.4.1 broke backward compatibility in which public typed properties no longer trigger `__get`
calls when not initialized, and must be explicitly unset instead. This is incompatible with the
`2.7.x` releases of `ocramius/proxy-manager`, so we intentionally remove compatibility to allow
downstream clients to either upgrade to `2.8.0` or `2.7.1` (if they are running *exactly* PHP
7.4.0).

Ref: https://bugs.php.net/bug.php?id=79373

Fixes #574
  • Loading branch information
Ocramius committed Apr 7, 2020
1 parent e77928e commit 8ea8109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
],
"require": {
"php": "7.4.*",
"php": "7.4.0",
"laminas/laminas-code": "^3.4.1",
"ocramius/package-versions": "^1.5.1",
"webimpress/safe-writer": "^2.0"
Expand Down

0 comments on commit 8ea8109

Please sign in to comment.