composer.json 553 B

12345678910111213141516171819
  1. {
  2. "name": "drupal/core-utility",
  3. "description": "Mostly static utility classes for string, xss, array, image, and other commonly needed manipulations.",
  4. "keywords": ["drupal"],
  5. "homepage": "https://www.drupal.org/project/drupal",
  6. "license": "GPL-2.0-or-later",
  7. "require": {
  8. "php": ">=5.5.9",
  9. "paragonie/random_compat": "^1.0|^2.0",
  10. "drupal/core-render": "^8.2",
  11. "symfony/polyfill-iconv": "~1.0",
  12. "symfony/polyfill-mbstring": "~1.0"
  13. },
  14. "autoload": {
  15. "psr-4": {
  16. "Drupal\\Component\\Utility\\": ""
  17. }
  18. }
  19. }