Feature Request
| Q |
A |
| New Feature |
yes |
| BC Break |
no |
Summary
Currently, one has to create plenty of exclude for PHPUnit for example.
Given the fact, that PHPUnit is executed in at least lowest and latest (and also locked for minimum supported PHP version), that would mean at least 3 entries within exclude to exclude a specific PHP version with all dependencies.
I'd like to suggest something like this (on top of the current way of excluding checks):
{
"exclude": [
{
"name": "PHPUnit",
"php": "8.0",
"dependencies": "*",
}
]
}
This would exclude all PHPUnit runs on PHP 8.0 with all composer dependencies.