composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "symfony/cache",
  3. "type": "library",
  4. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  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|2.0",
  20. "psr/simple-cache-implementation": "1.0",
  21. "symfony/cache-implementation": "1.0|2.0"
  22. },
  23. "require": {
  24. "php": ">=7.2.5",
  25. "psr/cache": "^1.0|^2.0",
  26. "psr/log": "^1.1",
  27. "symfony/cache-contracts": "^1.1.7|^2",
  28. "symfony/polyfill-php80": "^1.15",
  29. "symfony/service-contracts": "^1.1|^2",
  30. "symfony/var-exporter": "^4.4|^5.0"
  31. },
  32. "require-dev": {
  33. "cache/integration-tests": "dev-master",
  34. "doctrine/cache": "^1.6",
  35. "doctrine/dbal": "^2.10|^3.0",
  36. "predis/predis": "^1.1",
  37. "psr/simple-cache": "^1.0",
  38. "symfony/config": "^4.4|^5.0",
  39. "symfony/dependency-injection": "^4.4|^5.0",
  40. "symfony/filesystem": "^4.4|^5.0",
  41. "symfony/http-kernel": "^4.4|^5.0",
  42. "symfony/messenger": "^4.4|^5.0",
  43. "symfony/var-dumper": "^4.4|^5.0"
  44. },
  45. "conflict": {
  46. "doctrine/dbal": "<2.10",
  47. "symfony/dependency-injection": "<4.4",
  48. "symfony/http-kernel": "<4.4",
  49. "symfony/var-dumper": "<4.4"
  50. },
  51. "autoload": {
  52. "psr-4": { "Symfony\\Component\\Cache\\": "" },
  53. "exclude-from-classmap": [
  54. "/Tests/"
  55. ]
  56. },
  57. "minimum-stability": "dev"
  58. }