composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "symfony/cache",
  3. "type": "library",
  4. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  5. "keywords": ["caching", "psr6"],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Nicolas Grekas",
  11. "email": "p@tchwork.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "provide": {
  19. "psr/cache-implementation": "1.0",
  20. "psr/simple-cache-implementation": "1.0"
  21. },
  22. "require": {
  23. "php": "^5.5.9|>=7.0.8",
  24. "psr/cache": "~1.0",
  25. "psr/log": "~1.0",
  26. "psr/simple-cache": "^1.0",
  27. "symfony/polyfill-apcu": "~1.1"
  28. },
  29. "require-dev": {
  30. "cache/integration-tests": "dev-master",
  31. "doctrine/cache": "^1.6",
  32. "doctrine/dbal": "^2.4|^3.0",
  33. "predis/predis": "^1.0"
  34. },
  35. "conflict": {
  36. "symfony/var-dumper": "<3.3"
  37. },
  38. "autoload": {
  39. "psr-4": { "Symfony\\Component\\Cache\\": "" },
  40. "exclude-from-classmap": [
  41. "/Tests/"
  42. ]
  43. },
  44. "minimum-stability": "dev"
  45. }