composer.json 1008 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "symfony/translation-contracts",
  3. "type": "library",
  4. "description": "Generic abstractions related to translation",
  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. },
  21. "suggest": {
  22. "symfony/translation-implementation": ""
  23. },
  24. "autoload": {
  25. "psr-4": { "Symfony\\Contracts\\Translation\\": "" }
  26. },
  27. "minimum-stability": "dev",
  28. "extra": {
  29. "branch-alias": {
  30. "dev-main": "2.5-dev"
  31. },
  32. "thanks": {
  33. "name": "symfony/contracts",
  34. "url": "https://github.com/symfony/contracts"
  35. }
  36. }
  37. }