diff --git a/composer.json b/composer.json new file mode 100644 index 0000000000000000000000000000000000000000..c4ec1be44fb643be747b628941863607f41b06d4 --- /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 acb1d36a1b34e96f785196c7f8607968c26b0e09..3c9a6f732fdd567846a318e2641a2a183dc4a774 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;