composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "symfony/intl",
  3. "type": "library",
  4. "description": "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": ">=5.5.9",
  28. "symfony/polyfill-intl-icu": "~1.0"
  29. },
  30. "require-dev": {
  31. "symfony/filesystem": "~2.8|~3.0"
  32. },
  33. "suggest": {
  34. "ext-intl": "to use the component with locales other than \"en\""
  35. },
  36. "autoload": {
  37. "psr-4": { "Symfony\\Component\\Intl\\": "" },
  38. "classmap": [ "Resources/stubs" ],
  39. "exclude-from-classmap": [
  40. "/Tests/"
  41. ]
  42. },
  43. "minimum-stability": "dev",
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "3.2-dev"
  47. }
  48. }
  49. }