composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.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": "^6.4|^7.0",
  27. "symfony/emoji": "^7.1",
  28. "symfony/http-client": "^6.4|^7.0",
  29. "symfony/intl": "^6.4|^7.0",
  30. "symfony/translation-contracts": "^2.5|^3.0",
  31. "symfony/var-exporter": "^6.4|^7.0"
  32. },
  33. "conflict": {
  34. "symfony/translation-contracts": "<2.5"
  35. },
  36. "autoload": {
  37. "psr-4": { "Symfony\\Component\\String\\": "" },
  38. "files": [ "Resources/functions.php" ],
  39. "exclude-from-classmap": [
  40. "/Tests/"
  41. ]
  42. },
  43. "minimum-stability": "dev"
  44. }