diff --git a/src/Plugin/Layout/FoundationLayout.php b/src/Plugin/Layout/FoundationLayout.php
index e3fac75..9b0deee 100644
--- a/src/Plugin/Layout/FoundationLayout.php
+++ b/src/Plugin/Layout/FoundationLayout.php
@@ -3,12 +3,12 @@
 namespace Drupal\zurb_foundation\Plugin\Layout;
 
 use Drupal\Core\Form\FormStateInterface;
-use Drupal\layout_plugin\Plugin\Layout\LayoutBase;
+use Drupal\Core\Layout\LayoutDefault;
 
 /**
  * Layout class for all Foundation layouts.
  */
-class FoundationLayout extends LayoutBase {
+class FoundationLayout extends LayoutDefault {
 
   /**
    * {@inheritdoc}
diff --git a/zurb_foundation.info.yml b/zurb_foundation.info.yml
index 501c118..734d020 100644
--- a/zurb_foundation.info.yml
+++ b/zurb_foundation.info.yml
@@ -3,6 +3,10 @@ description: The most advanced responsive front-end framework in the world, now
 core: 8.x
 type: theme
 
+dependencies:
+  - drupal:system (>=8.3)
+  - drupal:layout_discovery
+
 # Image appears on admin/appearance
 screenshot: images/screenshot.jpg
 
