composer.json 706 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "symfony/icu",
  3. "type": "library",
  4. "description": "Contains an excerpt of the ICU data and classes to load it.",
  5. "keywords": ["icu", "intl"],
  6. "homepage": "http://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Bernhard Schussek",
  11. "email": "bschussek@gmail.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "http://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.3.3",
  20. "lib-ICU": ">=4.4",
  21. "symfony/intl": "~2.3"
  22. },
  23. "autoload": {
  24. "psr-0": { "Symfony\\Component\\Icu\\": "" }
  25. },
  26. "target-dir": "Symfony/Component/Icu"
  27. }