composer.json 368 B

1234567891011121314151617181920
  1. {
  2. "name": "cakephp/cache",
  3. "description": "Easy to use Caching library with support for multiple caching backends",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "CakePHP Community",
  8. "homepage": "http://cakephp.org"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-4": {
  13. "Cake\\Cache\\": "."
  14. }
  15. },
  16. "require": {
  17. "cakephp/core": "dev-master"
  18. },
  19. "minimum-stability": "beta"
  20. }