composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.1.3",
  20. "psr/cache": "^1.0",
  21. "psr/container": "^1.0"
  22. },
  23. "require-dev": {
  24. "symfony/polyfill-intl-idn": "^1.10"
  25. },
  26. "replace": {
  27. "symfony/cache-contracts": "self.version",
  28. "symfony/event-dispatcher-contracts": "self.version",
  29. "symfony/http-client-contracts": "self.version",
  30. "symfony/service-contracts": "self.version",
  31. "symfony/translation-contracts": "self.version"
  32. },
  33. "suggest": {
  34. "psr/event-dispatcher": "When using the EventDispatcher contracts",
  35. "symfony/cache-implementation": "",
  36. "symfony/event-dispatcher-implementation": "",
  37. "symfony/http-client-implementation": "",
  38. "symfony/service-implementation": "",
  39. "symfony/translation-implementation": ""
  40. },
  41. "autoload": {
  42. "psr-4": { "Symfony\\Contracts\\": "" },
  43. "exclude-from-classmap": [
  44. "**/Tests/"
  45. ]
  46. },
  47. "minimum-stability": "dev",
  48. "extra": {
  49. "branch-alias": {
  50. "dev-master": "1.1-dev"
  51. }
  52. }
  53. }