composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "symfony/string",
  3. "type": "library",
  4. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5. "keywords": ["string", "utf8", "utf-8", "grapheme", "i18n", "unicode"],
  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.2.5",
  20. "symfony/polyfill-ctype": "~1.8",
  21. "symfony/polyfill-intl-grapheme": "~1.0",
  22. "symfony/polyfill-intl-normalizer": "~1.0",
  23. "symfony/polyfill-mbstring": "~1.0",
  24. "symfony/polyfill-php80": "~1.15"
  25. },
  26. "require-dev": {
  27. "symfony/error-handler": "^4.4|^5.0",
  28. "symfony/http-client": "^4.4|^5.0",
  29. "symfony/translation-contracts": "^1.1|^2",
  30. "symfony/var-exporter": "^4.4|^5.0"
  31. },
  32. "autoload": {
  33. "psr-4": { "Symfony\\Component\\String\\": "" },
  34. "files": [ "Resources/functions.php" ],
  35. "exclude-from-classmap": [
  36. "/Tests/"
  37. ]
  38. },
  39. "minimum-stability": "dev"
  40. }