composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "sabre/cache",
  3. "description": "Simple cache abstraction layer implementing PSR-16",
  4. "keywords": [
  5. "sabre",
  6. "cache",
  7. "simple-cache",
  8. "psr-16",
  9. "apcu",
  10. "apc",
  11. "memcache",
  12. "memcached"
  13. ],
  14. "homepage": "http://sabre.io/dav/",
  15. "license": "BSD-3-Clause",
  16. "require": {
  17. "php": ">=7.0",
  18. "psr/simple-cache": "^1.0"
  19. },
  20. "authors": [
  21. {
  22. "name": "Evert Pot",
  23. "email": "me@evertpot.com",
  24. "homepage": "https://evertpot.com/",
  25. "role": "Developer"
  26. }
  27. ],
  28. "support": {
  29. "forum": "https://groups.google.com/group/sabredav-discuss",
  30. "source": "https://github.com/fruux/sabre-skel"
  31. },
  32. "autoload": {
  33. "psr-4" : {
  34. "Sabre\\Cache\\" : "lib/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4" : {
  39. "Sabre\\Cache\\" : "test/"
  40. }
  41. },
  42. "provide": {
  43. "psr/simple-cache-implementation": "~1.0"
  44. },
  45. "require-dev": {
  46. "sabre/cs": "~1.0.0",
  47. "phpunit/phpunit" : ">=6.2.4"
  48. },
  49. "config" : {
  50. "bin-dir" : "bin/"
  51. }
  52. }