-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
type/backward-compatibilitySomething will be/is intentionally brokenSomething will be/is intentionally broken
Description
Up until PHPUnit 9.3, it was possible to specify the configuration schema as the following:
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"This way, after a PHPUnit update, it was possible to validate the configuration against the current schema.
As of PHPUnit 9.3, the schema path has to be specified like this:
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/schema/9.3.xsd"Which requires an additional non-obvious code change during PHPUnit updates.
It would be nice if the following was possible:
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/schema/current.xsd"Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
type/backward-compatibilitySomething will be/is intentionally brokenSomething will be/is intentionally broken