composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. "symfony/cache-implementation": "1.0"
  22. },
  23. "require": {
  24. "php": "^7.2.5",
  25. "psr/cache": "~1.0",
  26. "psr/log": "~1.0",
  27. "symfony/cache-contracts": "^1.1.7|^2",
  28. "symfony/service-contracts": "^1.1|^2",
  29. "symfony/var-exporter": "^4.4|^5.0"
  30. },
  31. "require-dev": {
  32. "cache/integration-tests": "dev-master",
  33. "doctrine/cache": "~1.6",
  34. "doctrine/dbal": "~2.5",
  35. "predis/predis": "~1.1",
  36. "psr/simple-cache": "^1.0",
  37. "symfony/config": "^4.4|^5.0",
  38. "symfony/dependency-injection": "^4.4|^5.0",
  39. "symfony/var-dumper": "^4.4|^5.0"
  40. },
  41. "conflict": {
  42. "doctrine/dbal": "<2.5",
  43. "symfony/dependency-injection": "<4.4",
  44. "symfony/http-kernel": "<4.4",
  45. "symfony/var-dumper": "<4.4"
  46. },
  47. "autoload": {
  48. "psr-4": { "Symfony\\Component\\Cache\\": "" },
  49. "exclude-from-classmap": [
  50. "/Tests/"
  51. ]
  52. },
  53. "minimum-stability": "dev",
  54. "extra": {
  55. "branch-alias": {
  56. "dev-master": "5.0-dev"
  57. }
  58. }
  59. }