composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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": "^7.1.3",
  24. "psr/cache": "~1.0",
  25. "psr/log": "~1.0",
  26. "psr/simple-cache": "^1.0"
  27. },
  28. "require-dev": {
  29. "cache/integration-tests": "dev-master",
  30. "doctrine/cache": "~1.6",
  31. "doctrine/dbal": "~2.4",
  32. "predis/predis": "~1.0"
  33. },
  34. "conflict": {
  35. "symfony/var-dumper": "<3.4"
  36. },
  37. "autoload": {
  38. "psr-4": { "Symfony\\Component\\Cache\\": "" },
  39. "exclude-from-classmap": [
  40. "/Tests/"
  41. ]
  42. },
  43. "minimum-stability": "dev",
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "4.1-dev"
  47. }
  48. }
  49. }