composer.json 823 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "tedivm/stash",
  3. "description": "The place to keep your cache.",
  4. "keywords": [
  5. "cache",
  6. "caching",
  7. "sessions",
  8. "memcached",
  9. "redis",
  10. "apc",
  11. "psr-6",
  12. "psr6"
  13. ],
  14. "homepage": "http://github.com/tedious/Stash",
  15. "type": "library",
  16. "license": "BSD-3-Clause",
  17. "authors": [
  18. {
  19. "name": "Robert Hafner",
  20. "email": "tedivm@tedivm.com"
  21. },
  22. {
  23. "name": "Josh Hall-Bachner",
  24. "email": "charlequin@gmail.com"
  25. }
  26. ],
  27. "require": {
  28. "php": "^5.4|^7.0",
  29. "psr/cache": "~1.0"
  30. },
  31. "require-dev": {
  32. "fabpot/php-cs-fixer": "^1.9",
  33. "phpunit/phpunit": "4.8.*",
  34. "satooshi/php-coveralls": "1.0.*"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Stash\\": "src/Stash/"
  39. }
  40. },
  41. "provide": {
  42. "psr/cache-implementation": "1.0.0"
  43. }
  44. }