composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. },
  25. "suggest": {
  26. "psr/cache": "When using the Cache contracts",
  27. "psr/container": "When using the Service contracts",
  28. "symfony/cache-contracts-implementation": "",
  29. "symfony/service-contracts-implementation": "",
  30. "symfony/translation-contracts-implementation": ""
  31. },
  32. "autoload": {
  33. "psr-4": { "Symfony\\Contracts\\": "" },
  34. "exclude-from-classmap": [
  35. "**/Tests/"
  36. ]
  37. },
  38. "minimum-stability": "dev",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "1.0-dev"
  42. }
  43. }
  44. }