composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "symfony/intl",
  3. "type": "library",
  4. "description": "Provides a PHP replacement layer for the C intl extension that includes additional data from the ICU library",
  5. "keywords": ["intl", "icu", "internationalization", "localization", "i18n", "l10n"],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Bernhard Schussek",
  11. "email": "bschussek@gmail.com"
  12. },
  13. {
  14. "name": "Eriksen Costa",
  15. "email": "eriksen.costa@infranology.com.br"
  16. },
  17. {
  18. "name": "Igor Wiedler",
  19. "email": "igor@wiedler.ch"
  20. },
  21. {
  22. "name": "Symfony Community",
  23. "homepage": "https://symfony.com/contributors"
  24. }
  25. ],
  26. "require": {
  27. "php": ">=7.2.5",
  28. "symfony/polyfill-intl-icu": "~1.0",
  29. "symfony/polyfill-php80": "^1.15"
  30. },
  31. "require-dev": {
  32. "symfony/filesystem": "^4.4|^5.0"
  33. },
  34. "suggest": {
  35. "ext-intl": "to use the component with locales other than \"en\""
  36. },
  37. "autoload": {
  38. "psr-4": { "Symfony\\Component\\Intl\\": "" },
  39. "classmap": [ "Resources/stubs" ],
  40. "exclude-from-classmap": [
  41. "/Tests/"
  42. ]
  43. },
  44. "minimum-stability": "dev"
  45. }