composer.json 570 B

12345678910111213141516171819
  1. {
  2. "name": "drupal/core-plugin",
  3. "description": "Base building block for a scalable and extensible plug-in system for PHP components and application framework extensions.",
  4. "keywords": ["drupal", "plugin", "plugins"],
  5. "homepage": "https://www.drupal.org/project/drupal",
  6. "license": "GPL-2.0-or-later",
  7. "require": {
  8. "php": ">=5.5.9",
  9. "symfony/validator": ">=2.7 <4.0.0"
  10. },
  11. "autoload": {
  12. "psr-4": {
  13. "Drupal\\Component\\Plugin\\": ""
  14. }
  15. },
  16. "suggest": {
  17. "symfony/validator": "Leveraged in the use of context aware plugins."
  18. }
  19. }