From 18a4925a9f85f0879bc23854af8413c08dafdf36 Mon Sep 17 00:00:00 2001 From: divyajose Date: Mon, 11 Sep 2023 14:19:20 +0530 Subject: [PATCH] Added patch for deprecaion notice --- .github/workflows/php.yml | 2 +- composer.json | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index bbcb7f53..2bc3fe16 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -92,7 +92,7 @@ jobs: composer require wikimedia/composer-merge-plugin composer config --json extra.merge-plugin.require '["modules/contrib/apigee_edge/composer.json"]' composer config platform.php ${{ matrix.php-version }} - composer config --json extra.patches."drupal/core" '{ "Support entities that are neither content nor config entities": "https://www.drupal.org/files/issues/2020-12-02/3042467-50.patch"}' + composer config --json extra.patches."drupal/core" '{ "Support entities that are neither content nor config entities": "https://www.drupal.org/files/issues/2020-12-02/3042467-50.patch", "Add a method to access the original property": "https://www.drupal.org/files/issues/2023-07-22/2839195-105.patch"}' composer update --with-all-dependencies composer require --dev phpspec/prophecy-phpunit:^2 composer require --dev drupal/classy:^1.0 diff --git a/composer.json b/composer.json index 37bd6d0b..fc3b90d7 100644 --- a/composer.json +++ b/composer.json @@ -33,6 +33,11 @@ "services": { "drush.services.yml": "^12" } + }, + "patches": { + "drupal/core": { + "Add a method to access the original property": "https://www.drupal.org/files/issues/2023-07-22/2839195-105.patch" + } } } }