Remove indirect dependencies#275
Open
villfa wants to merge 6 commits intophp-cache:masterphp-cache/cache:masterfrom
villfa:chore/remove-dependenciesvillfa/cache:chore/remove-dependenciesCopy head branch name to clipboard
Open
Remove indirect dependencies#275villfa wants to merge 6 commits intophp-cache:masterphp-cache/cache:masterfrom villfa:chore/remove-dependenciesvillfa/cache:chore/remove-dependenciesCopy head branch name to clipboard
villfa wants to merge 6 commits intophp-cache:masterphp-cache/cache:masterfrom
villfa:chore/remove-dependenciesvillfa/cache:chore/remove-dependenciesCopy head branch name to clipboard
Conversation
`unserialize(null)` causes a deprecation warning flooding the logs, so in case
the cache for a given cache is empty this warning will be seen. To avoid this
use `''` as a replacement.
`unserialize(null) === unserialzie('') === false` this does not change behaviour.
Predis `^2.0` has been released some time ago, this version constraint allows applications depending on `predis-adapter` to update to `predis/predis:^2.0`.
- Include predis update - Include unserialize deprecation warning
- Update redis to a supported version - Update redis-cluser to a supported version, use 6.2.10 as 7.x fails non local connections see Grokzen/docker-redis-cluster#155 - Set redis-cluster IP to 0.0.0.0 interface to allow all connections
- requires php version >= 8.0 - apply normalize fixes
2f3e938 to
20bfb9e
Compare
20bfb9e to
cb0a1ff
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Most of the adapters don't require
psr/cacheandpsr/simple-cache, at least not directly, so I think it's safe to remove these dependencies fromcomposer.json.