composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "symfony/polyfill-intl-icu",
  3. "type": "library",
  4. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5. "keywords": ["polyfill", "shim", "compatibility", "portable", "intl", "icu"],
  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.1"
  20. },
  21. "autoload": {
  22. "files": [ "bootstrap.php" ],
  23. "psr-4": { "Symfony\\Polyfill\\Intl\\Icu\\": "" },
  24. "classmap": [ "Resources/stubs" ],
  25. "exclude-from-classmap": [
  26. "/Tests/"
  27. ]
  28. },
  29. "suggest": {
  30. "ext-intl": "For best performance and support of other locales than \"en\""
  31. },
  32. "minimum-stability": "dev",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-main": "1.22-dev"
  36. },
  37. "thanks": {
  38. "name": "symfony/polyfill",
  39. "url": "https://github.com/symfony/polyfill"
  40. }
  41. }
  42. }