composer.json 520 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+",
  7. "require": {
  8. "php": ">=5.5.9",
  9. "doctrine/common": "2.5.*",
  10. "doctrine/annotations": "1.2.*",
  11. "drupal/core-file-cache": "^8.2",
  12. "drupal/core-plugin": "^8.2",
  13. "drupal/core-utility": "^8.2"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "Drupal\\Component\\Annotation\\": ""
  18. }
  19. }
  20. }