For big monoliths, it would be handy to be able to use the glob pattern when including/excluding.
For instance, instead of
{
"extra": {
"composer-attribute-collector": {
"exclude": [
"apps/admin/tests/",
"apps/main/tests/",
"components/colors/tests/",
"components/http/tests/",
"components/math/tests/"
]
}
}
}
we would have
{
"extra": {
"composer-attribute-collector": {
"exclude": [
"apps/**/tests/",
"components/**/tests/"
]
}
}
}