composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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": ">=8.1"
  20. },
  21. "suggest": {
  22. "symfony/translation-implementation": ""
  23. },
  24. "autoload": {
  25. "psr-4": { "Symfony\\Contracts\\Translation\\": "" },
  26. "exclude-from-classmap": [
  27. "/Test/"
  28. ]
  29. },
  30. "minimum-stability": "dev",
  31. "extra": {
  32. "branch-alias": {
  33. "dev-main": "3.3-dev"
  34. },
  35. "thanks": {
  36. "name": "symfony/contracts",
  37. "url": "https://github.com/symfony/contracts"
  38. }
  39. }
  40. }