composer.json 1010 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "symfony/polyfill-mbstring",
  3. "type": "library",
  4. "description": "Symfony polyfill for the Mbstring extension",
  5. "keywords": ["polyfill", "shim", "compatibility", "portable", "mbstring"],
  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",
  20. "ext-iconv": "*"
  21. },
  22. "provide": {
  23. "ext-mbstring": "*"
  24. },
  25. "autoload": {
  26. "psr-4": { "Symfony\\Polyfill\\Mbstring\\": "" },
  27. "files": [ "bootstrap.php" ]
  28. },
  29. "suggest": {
  30. "ext-mbstring": "For best performance"
  31. },
  32. "minimum-stability": "dev",
  33. "extra": {
  34. "thanks": {
  35. "name": "symfony/polyfill",
  36. "url": "https://github.com/symfony/polyfill"
  37. }
  38. }
  39. }