composer.json 526 B

1234567891011121314151617181920
  1. {
  2. "name": "drupal/core-annotation",
  3. "description": "Annotation discovery and implementation of plugins.",
  4. "keywords": ["drupal"],
  5. "homepage": "https://www.drupal.org/project/drupal",
  6. "license": "GPL-2.0-or-later",
  7. "require": {
  8. "php": ">=7.0.8",
  9. "doctrine/common": "^2.7",
  10. "doctrine/annotations": "^1.4",
  11. "drupal/core-file-cache": "^8.8",
  12. "drupal/core-plugin": "^8.8",
  13. "drupal/core-utility": "^8.8"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "Drupal\\Component\\Annotation\\": ""
  18. }
  19. }
  20. }