composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "cache/adapter-common",
  3. "type": "library",
  4. "description": "Common classes for PSR-6 adapters",
  5. "keywords": [
  6. "cache",
  7. "psr-6",
  8. "tag"
  9. ],
  10. "homepage": "http://www.php-cache.com/en/latest/",
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "Aaron Scherer",
  15. "email": "aequasi@gmail.com",
  16. "homepage": "https://github.com/aequasi"
  17. },
  18. {
  19. "name": "Tobias Nyholm",
  20. "email": "tobias.nyholm@gmail.com",
  21. "homepage": "https://github.com/nyholm"
  22. }
  23. ],
  24. "require": {
  25. "php": "^5.6 || ^7.0 || ^8.0",
  26. "cache/tag-interop": "^1.0",
  27. "psr/cache": "^1.0",
  28. "psr/log": "^1.0",
  29. "psr/simple-cache": "^1.0"
  30. },
  31. "require-dev": {
  32. "cache/integration-tests": "^0.16",
  33. "phpunit/phpunit": "^5.7.21"
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "1.1-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Cache\\Adapter\\Common\\": ""
  43. }
  44. },
  45. "autoload-dev": {
  46. "psr-4": {
  47. "Cache\\Adapter\\Common\\Tests\\": "Tests/"
  48. },
  49. "exclude-from-classmap": [
  50. "/Tests/"
  51. ]
  52. },
  53. "minimum-stability": "dev",
  54. "prefer-stable": true
  55. }