From 212c70f9dbab0ab45ba3d7a4d211d3680d2211e3 Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Mon, 4 Dec 2023 09:59:18 +0000 Subject: [PATCH] Exclude composer-require-checker on PHP 8.1 --- README.md | 2 +- resources/composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 83d9cae..1bce80b 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ It has been extracted as a separate project to make maintenance easier and enabl | composer | [Dependency Manager for PHP](https://getcomposer.org/) | ✅ | ✅ | ✅ | | composer-bin-plugin | [Composer plugin to install bin vendors in isolated locations](https://github.com/bamarni/composer-bin-plugin) | ✅ | ✅ | ✅ | | composer-normalize | [Composer plugin to normalize composer.json files](https://github.com/ergebnis/composer-normalize) | ✅ | ✅ | ✅ | -| composer-require-checker | [Verify that no unknown symbols are used in the sources of a package.](https://github.com/maglnet/ComposerRequireChecker) | ✅ | ✅ | ✅ | +| composer-require-checker | [Verify that no unknown symbols are used in the sources of a package.](https://github.com/maglnet/ComposerRequireChecker) | ❌ | ✅ | ✅ | | composer-require-checker-3 | [Verify that no unknown symbols are used in the sources of a package.](https://github.com/maglnet/ComposerRequireChecker) | ✅ | ✅ | ✅ | | composer-unused | [Show unused packages by scanning your code](https://github.com/icanhazstring/composer-unused) | ✅ | ✅ | ✅ | | dephpend | [Detect flaws in your architecture](https://dephpend.com/) | ✅ | ✅ | ✅ | diff --git a/resources/composer.json b/resources/composer.json index acb54d7..46a0cec 100644 --- a/resources/composer.json +++ b/resources/composer.json @@ -41,7 +41,7 @@ } }, "test": "composer-require-checker -V", - "tags": ["composer"] + "tags": ["composer", "exclude-php:8.1"] }, { "name": "composer-require-checker-3",