Switch to symfony/cache; closes #8561 (#8944)
* Switch to symfony/cache; closes #8561 1. Use filesystem by default. 2. Drop support of APCu/Wincache (and so remove footprint file checks). 3. Remove fallback to memory cache when configured cache adapter fails. 4. Handle configuration outside database. 5. Add a configuration command. 6. Remove cache contents from debug tab (weighs too much and not really usefull). 7. Test, test, test ! * Drop couchbase support * Drop file:// scheme definition * Add memcached to test suite * Fix namespace normalization * Fix tests * Show memcached version
... | ... | @@ -41,6 +41,7 @@ |
"monolog/monolog": "^2.0", | ||
"paragonie/sodium_compat": "^1.14", | ||
"phpmailer/phpmailer": "^6.0", | ||
"psr/cache": "^1.0", | ||
"psr/log": "^1.1", | ||
"psr/simple-cache": "^1.0", | ||
"ramsey/uuid": "^4.0", | ||
... | ... | @@ -52,6 +53,7 @@ |
"scssphp/scssphp": "^1.0", | ||
"sebastian/diff": "^4.0", | ||
"simplepie/simplepie": "^1.5", | ||
"symfony/cache": "^5.2", | ||
"symfony/console": "^4.4", | ||
"tecnickcom/tcpdf": "^6.2", | ||
"true/punycode": "^2.1", | ||
... | ... |