composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "symfony/translation",
  3. "type": "library",
  4. "description": "Provides tools to internationalize your application",
  5. "keywords": [],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=8.4",
  20. "symfony/polyfill-mbstring": "^1.0",
  21. "symfony/translation-contracts": "^3.6.1"
  22. },
  23. "require-dev": {
  24. "nikic/php-parser": "^5.0",
  25. "psr/log": "^1|^2|^3",
  26. "symfony/config": "^7.4|^8.0",
  27. "symfony/console": "^7.4|^8.0",
  28. "symfony/dependency-injection": "^7.4|^8.0",
  29. "symfony/finder": "^7.4|^8.0",
  30. "symfony/http-client-contracts": "^2.5|^3.0",
  31. "symfony/http-kernel": "^7.4|^8.0",
  32. "symfony/intl": "^7.4|^8.0",
  33. "symfony/polyfill-intl-icu": "^1.21",
  34. "symfony/routing": "^7.4|^8.0",
  35. "symfony/service-contracts": "^2.5|^3",
  36. "symfony/yaml": "^7.4|^8.0"
  37. },
  38. "conflict": {
  39. "nikic/php-parser": "<5.0",
  40. "symfony/http-client-contracts": "<2.5",
  41. "symfony/service-contracts": "<2.5"
  42. },
  43. "provide": {
  44. "symfony/translation-implementation": "2.3|3.0"
  45. },
  46. "autoload": {
  47. "files": [ "Resources/functions.php" ],
  48. "psr-4": { "Symfony\\Component\\Translation\\": "" },
  49. "exclude-from-classmap": [
  50. "/Tests/"
  51. ]
  52. },
  53. "minimum-stability": "dev"
  54. }