composer.json 1.4 KB

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