From 0096eb08399fff05e83a80e3752c16ebb25bc16a Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Mon, 22 Sep 2014 10:24:30 +0100
Subject: [PATCH] Issue #2211633 by EclipseGc: Provide a composer.json file for
 Drupal\Component\Plugin.

---
 core/lib/Drupal/Component/Plugin/composer.json | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 core/lib/Drupal/Component/Plugin/composer.json

diff --git a/core/lib/Drupal/Component/Plugin/composer.json b/core/lib/Drupal/Component/Plugin/composer.json
new file mode 100644
index 000000000000..09179e51d3c9
--- /dev/null
+++ b/core/lib/Drupal/Component/Plugin/composer.json
@@ -0,0 +1,18 @@
+{
+    "name": "drupal/plugin",
+    "description": "Base building block for a scalable and extensible plug-in system for PHP components and application framework extensions.",
+    "keywords": ["drupal", "plugin", "plugins"],
+    "homepage": "https://drupal.org/project/drupal",
+    "license": "GPL-2.0+",
+    "require": {
+        "php": ">=5.4.2",
+    },
+    "autoload": {
+        "psr-0": {
+            "Drupal\\Component\\Plugin\\": ""
+        }
+    }
+    "suggest": {
+        "symfony/validator": "Leveraged in the use of context aware plugins."
+    }
+}
-- 
GitLab