Allow removal of Annotations to be configured
PHPUnit 9.6 and earlier ar still widely used in the community, but does not support PHPUnit Annotations. PHPUnit 10 added support for Attributes and deprecated Annotations PHPUnit 12 will remove support for the deprecated Annotations
As it stands, the rulesets in this project will convert all Annotations to Attributes and remove those annotations. This means that the annotations will not be present for use in PHPUnit 9.6 and earlier.
Many projects will need their tests to work with PHPUnit 9, and PHPUnit 12. Unfortunately these rulesets will prevent this from being possible.
Would it be possible to add configuration to prevent the removal of the annotations (such that they can be processed at a later time)?