composer.json 511 B

1234567891011121314151617181920
  1. {
  2. "name": "drupal/core-gettext",
  3. "description": "PHP library for reading PO files.",
  4. "type": "library",
  5. "license": "GPL-2.0-or-later",
  6. "support": {
  7. "issues": "https://www.drupal.org/project/issues/drupal",
  8. "irc": "irc://irc.freenode.net/drupal-contribute",
  9. "source": "https://www.drupal.org/project/drupal/git-instructions"
  10. },
  11. "require": {
  12. "php": ">=7.0.8",
  13. "drupal/core-utility": "^8.8"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "Drupal\\Component\\Gettext\\": ""
  18. }
  19. }
  20. }