From 88a34deb4742d49110dca683202b71ed8ac76f98 Mon Sep 17 00:00:00 2001
From: rakeshjames <rakeshjames@1177822.no-reply.drupal.org>
Date: Thu, 31 Mar 2016 11:48:10 -0500
Subject: [PATCH] Issue #2689639 by rakesh.gectcr: Add composer.json file  to
 module

---
 composer.json       | 21 +++++++++++++++++++++
 migrate_plus.module |  2 +-
 2 files changed, 22 insertions(+), 1 deletion(-)
 create mode 100644 composer.json

diff --git a/composer.json b/composer.json
new file mode 100644
index 00000000..c4ec1be4
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,21 @@
+{
+  "name": "drupal/migrate_plus",
+  "description": "Enhancements to core migration support.",
+  "type": "drupal-module",
+  "license": "GPL-2.0+",
+  "homepage": "https://www.drupal.org/project/migrate_plus",
+  "authors": [
+    {
+      "name": "Mike Ryan",
+      "homepage":"https://www.drupal.org/u/mikeryan",
+      "role": "Maintainer"
+    }
+  ],
+  "support": {
+    "issues": "https://www.drupal.org/project/issues/migrate_plus",
+    "irc": "irc://irc.freenode.org/drupal-migrate",
+    "source": "https://cgit.drupalcode.org/migrate_plus"
+  },
+  "minimum-stability": "dev",
+  "require": {}
+}
diff --git a/migrate_plus.module b/migrate_plus.module
index acb1d36a..3c9a6f73 100644
--- a/migrate_plus.module
+++ b/migrate_plus.module
@@ -5,7 +5,7 @@
  * Provides enhancements for implementing and managing migrations.
  */
 
-use Drupal\migrate\Entity\MigrationInterface;
+use Drupal\migrate\Plugin\MigrationInterface;
 use Drupal\migrate\Plugin\MigrateSourceInterface;
 use Drupal\migrate\Row;
 use Drupal\migrate_plus\Entity\MigrationGroup;
-- 
GitLab