From 3d55a53d50eeb19572174943f80c6e65f3874482 Mon Sep 17 00:00:00 2001 From: Matt Glaman Date: Fri, 18 Oct 2024 11:39:47 -0500 Subject: [PATCH 1/2] drupal_root property is deprecated fix #316 --- src/Command/CheckCommand.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Command/CheckCommand.php b/src/Command/CheckCommand.php index 450dbd9..33cde85 100644 --- a/src/Command/CheckCommand.php +++ b/src/Command/CheckCommand.php @@ -141,9 +141,6 @@ protected function execute(InputInterface $input, OutputInterface $output): int 'ignoreErrors' => [ '#Unsafe usage of new static\(\)#' ], - 'drupal' => [ - 'drupal_root' => $this->drupalRoot, - ] ] ]; From b71be815b48174f5553534580ce4d8e1d2617ea6 Mon Sep 17 00:00:00 2001 From: Matt Glaman Date: Thu, 12 Dec 2024 13:31:05 -0600 Subject: [PATCH 2/2] Update README.md --- README.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/README.md b/README.md index 97441a7..c40f148 100644 --- a/README.md +++ b/README.md @@ -18,20 +18,12 @@ Are you ready for Drupal 9? Check out our [Drupal 9 Readiness](https://github.co ## Installation -You can install this in your project using Composer as a development dependency like so: +You install this in your project using Composer as a development dependency like so: ``` composer require mglaman/drupal-check --dev ``` -You can also install this globally using Composer like so: - -``` -composer global require mglaman/drupal-check -``` - -Refer to Composer's documentation on how to ensure global binaries are in your PATH: https://getcomposer.org/doc/00-intro.md#manual-installation. - ## Usage ```