Files
archived-DoctrineMigrations…/phpunit.xml.dist
Grégoire Paris c223806939 Upgrade to PHPUnit 11 (#575)
* Remove unneeded trait

* Upgrade to PHPUnit 11

The use of listeners is no longer possible, but we can replace the
deprecation detection functionality with native PHPUnit features.
2025-01-12 22:51:12 +01:00

26 lines
706 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
bootstrap="vendor/autoload.php"
displayDetailsOnTestsThatTriggerDeprecations="true"
>
<testsuites>
<testsuite name="DoctrineMigrationsBundle for the Symfony Framework">
<directory>./tests</directory>
</testsuite>
</testsuites>
<source ignoreSuppressionOfDeprecations="true">
<include>
<directory>src</directory>
</include>
</source>
<php>
<server name="DOCTRINE_DEPRECATIONS" value="trigger"/>
</php>
</phpunit>