diff --git a/src/Plugin/migrate/cckfield/NameItem.php b/src/Plugin/migrate/cckfield/NameItem.php
new file mode 100644
index 0000000..747cfd1
--- /dev/null
+++ b/src/Plugin/migrate/cckfield/NameItem.php
@@ -0,0 +1,53 @@
+<?php
+
+namespace Drupal\name\Plugin\migrate\cckfield;
+
+use Drupal\migrate\Plugin\MigrationInterface;
+use Drupal\migrate_drupal\Plugin\migrate\cckfield\CckFieldPluginBase;
+
+/**
+ * @MigrateCckField(
+ *   id = "name",
+ *   core = {7}
+ * )
+ */
+class NameItem extends CckFieldPluginBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getFieldFormatterMap() {
+    return [
+      'name_formatter' => 'name_default',
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getFieldWidgetMap() {
+    return [
+      'name_widget' => 'name_default',
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function processCckFieldValues(MigrationInterface $migration, $field_name, $data) {
+    $process = [
+      'plugin' => 'iterator',
+      'source' => $field_name,
+      'process' => [
+        'title' => 'title',
+        'given' => 'given',
+        'middle' => 'middle',
+        'family' => 'family',
+        'generational' => 'generational',
+        'credentials' => 'credentials',
+      ],
+    ];
+    $migration->mergeProcessOfProperty($field_name, $process);
+  }
+
+}
