ezsystems / symfony-tools
eZ Systems Symfony Tools
Installs: 293 450
Dependents: 2
Suggesters: 0
Security: 0
Stars: 19
Watchers: 21
Forks: 3
Type:ezplatform-bundle
Requires
- php: ^7.1
- symfony/symfony: ^3.4.40
Requires (Dev)
- cache/integration-tests: dev-master
- friendsofphp/php-cs-fixer: ^2.14.6
- phpdocumentor/reflection-docblock: ^3.0|^4.0|^5.0
- phpstan/phpstan: ^0.12.88
- phpunit/phpunit: ^7.5
- predis/predis: ^1.1.1
- symfony/phpunit-bridge: ~3.4|~4.0
Suggests
- ext-igbinary: To improve serialization size and speed for cache and sessions, install igbinary extension
- ext-redis: For use with RedisSessionHandler & RedisTagAwareAdapter, usage of native redis v3.1.3+ extension is recommended
Conflicts
- ezsystems/ezpublish-kernel: 7.0 - 7.3.4 | 7.4.0 - 7.4.2
This package is auto-updated.
Last update: 2024-10-22 02:07:20 UTC
README
Collection of polyfill (backported) and incubator (proposed) features for Symfony.
Backports Symfony features so they can be used in earlier versions of Symfony, and proposed features improving Symfony further.
This bundle is first and foremost aiming to cover needs of eZ Platform, but is placed in own bundle under MIT as we think others can benefit and help collaborate, and to simplify forward and backport ports to and from Symfony itself.
Requriments
- Symfony 3.4
- PHP 7.1+ (due to backported Symfony 4 code being written for PHP 7.1+)
Semantic Versioning exception
Bundle follows SemVer with one exception:
- Incubator features are allowed to break BC also in Minor versions (x.Y.z), when needed in order to align with changes to the feature when it gets accepted to Symfony.
!! Tip: As such if you rely on incubator features, make sure to require specific minor versions in composer, like
~1.1.0
or ~1.1.2 || ~1.2.0
Features
Polyfill (backport) features:
- Redis session handler (for Symfony3, native in Symfony4)
- NativeTagAwareAdapters (for Symfony3, native in Symfony4)
Incubator (proposed) features
- N/A
Contributing
Make sure as much as possible the feature is forward compatible for users, so when they upgrade to Symfony version where
it's included, they should ideally not need to adapt their code/config. (see Semantic Versioning exception
for how
this works for incubators)
Polyfill (Backports) When contributing Symfony backports to this bundle, be aware you commit to help maintain that feature in case there are bug fixes or improvements to that feature in Symfony itself.
Incubator (Proposed) Incubator features should only be proposed here if also proposed against Symfony itself, and there is at least some certainty it will be accepted. And you also commit to adapt the feature here, if changes are requested once proposed to Symfony. Essentially aiming for the feature here becoming a polyfill/backport feature in the end.
As such it's only applicable for smaller features (e.g. new cache adapter(s)), not a complete new component or larger changes across Symfony itself for instance.