composer.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "symfony/contracts",
  3. "type": "library",
  4. "description": "A set of abstractions extracted out of the Symfony components",
  5. "keywords": ["abstractions", "contracts", "decoupling", "interfaces", "interoperability", "standards"],
  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. "require": {
  19. "php": ">=7.2.5",
  20. "psr/cache": "^1.0",
  21. "psr/container": "^1.0",
  22. "psr/event-dispatcher": "^1.0"
  23. },
  24. "require-dev": {
  25. "symfony/polyfill-intl-idn": "^1.10"
  26. },
  27. "replace": {
  28. "symfony/cache-contracts": "self.version",
  29. "symfony/deprecation-contracts": "self.version",
  30. "symfony/event-dispatcher-contracts": "self.version",
  31. "symfony/http-client-contracts": "self.version",
  32. "symfony/service-contracts": "self.version",
  33. "symfony/translation-contracts": "self.version"
  34. },
  35. "suggest": {
  36. "symfony/cache-implementation": "",
  37. "symfony/event-dispatcher-implementation": "",
  38. "symfony/http-client-implementation": "",
  39. "symfony/service-implementation": "",
  40. "symfony/translation-implementation": ""
  41. },
  42. "autoload": {
  43. "psr-4": { "Symfony\\Contracts\\": "" },
  44. "files": [ "Deprecation/function.php" ],
  45. "exclude-from-classmap": [
  46. "**/Tests/"
  47. ]
  48. },
  49. "minimum-stability": "dev",
  50. "extra": {
  51. "branch-version": "2.3",
  52. "branch-alias": {
  53. "dev-main": "2.3-dev"
  54. }
  55. }
  56. }