You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.3 KiB

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