composer.json 629 B

1234567891011121314151617
  1. {
  2. "name":"colinmollenhour/cache-backend-file",
  3. "type":"magento-module",
  4. "license":"BSD-3-Clause",
  5. "homepage":"https://github.com/colinmollenhour/Cm_Cache_Backend_File",
  6. "description":"The stock Zend_Cache_Backend_File backend has extremely poor performance for cleaning by tags making it become unusable as the number of cached items increases. This backend makes many changes resulting in a huge performance boost, especially for tag cleaning.",
  7. "authors":[
  8. {
  9. "name":"Colin Mollenhour"
  10. }
  11. ],
  12. "autoload": {
  13. "classmap": [
  14. "File.php"
  15. ]
  16. }
  17. }