mirror of
https://github.com/doctrine/DoctrineMigrationsBundle.git
synced 2026-03-23 22:32:17 +01:00
* 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.
26 lines
706 B
XML
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>
|