composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "cache/hierarchical-cache",
  3. "description": "A helper trait and interface to your PSR-6 cache to support hierarchical keys.",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "cache",
  8. "psr-6",
  9. "hierarchy",
  10. "hierarchical"
  11. ],
  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. "homepage": "http://www.php-cache.com/en/latest/",
  25. "require": {
  26. "php": ">=7.4",
  27. "cache/adapter-common": "^1.0",
  28. "psr/cache": "^1.0 || ^2.0"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  32. },
  33. "minimum-stability": "dev",
  34. "prefer-stable": true,
  35. "autoload": {
  36. "psr-4": {
  37. "Cache\\Hierarchy\\": ""
  38. },
  39. "exclude-from-classmap": [
  40. "/Tests/"
  41. ]
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "1.1-dev"
  46. }
  47. }
  48. }