composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "cache/simple-cache-bridge",
  3. "description": "A PSR-6 bridge to PSR-16. This will make any PSR-6 cache compatible with SimpleCache.",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "cache",
  8. "psr-6",
  9. "psr-16",
  10. "bridge"
  11. ],
  12. "authors": [
  13. {
  14. "name": "Magnus Nordlander",
  15. "email": "magnus@fervo.se",
  16. "homepage": "https://github.com/magnusnordlander"
  17. }
  18. ],
  19. "homepage": "http://www.php-cache.com/en/latest/",
  20. "require": {
  21. "php": ">=7.4",
  22. "psr/cache": "^1.0 || ^2.0",
  23. "psr/simple-cache": "^1.0"
  24. },
  25. "require-dev": {
  26. "cache/integration-tests": "^0.17",
  27. "mockery/mockery": "^1.0",
  28. "phpunit/phpunit": "^7.5.20 || ^9.5.10",
  29. "symfony/cache": "^3.2"
  30. },
  31. "provide": {
  32. "psr/simple-cache-implementation": "^1.0"
  33. },
  34. "minimum-stability": "dev",
  35. "prefer-stable": true,
  36. "autoload": {
  37. "psr-4": {
  38. "Cache\\Bridge\\SimpleCache\\": ""
  39. },
  40. "exclude-from-classmap": [
  41. "/Tests/"
  42. ]
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "1.1-dev"
  47. }
  48. }
  49. }