diff --git a/Dockerfile b/Dockerfile index 5c92cd2..1b3f56c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,10 @@ ENV BASE_IMAGE_TAG=${BASE_IMAGE_TAG} ENV SYMFONY_DEPRECATIONS_HELPER=weak # Install drupal/paragraphs as required by entity_to_text_paragraphs +RUN COMPOSER_MEMORY_LIMIT=-1 composer config minimum-stability dev RUN COMPOSER_MEMORY_LIMIT=-1 composer require "drupal/paragraphs:^1.14" RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/entity_browser" +RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/feeds" # Register the Drupal and DrupalPractice Standard with PHPCS. RUN ./vendor/bin/phpcs --config-set installed_paths \ diff --git a/composer.json b/composer.json index a7557e5..b19cab2 100644 --- a/composer.json +++ b/composer.json @@ -23,6 +23,7 @@ "url": "https://packages.drupal.org/8" } ], + "minimum-stability": "dev", "support": { "issues": "https://www.drupal.org/project/issues/factory_lollipop" },