composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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": ">=8.0.2",
  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. },
  25. "require-dev": {
  26. "symfony/error-handler": "^5.4|^6.0",
  27. "symfony/http-client": "^5.4|^6.0",
  28. "symfony/translation-contracts": "^2.0|^3.0",
  29. "symfony/var-exporter": "^5.4|^6.0"
  30. },
  31. "conflict": {
  32. "symfony/translation-contracts": "<2.0"
  33. },
  34. "autoload": {
  35. "psr-4": { "Symfony\\Component\\String\\": "" },
  36. "files": [ "Resources/functions.php" ],
  37. "exclude-from-classmap": [
  38. "/Tests/"
  39. ]
  40. },
  41. "minimum-stability": "dev"
  42. }