Files
archived-data-fixtures/phpunit.xml.dist
Grégoire Paris 22cfffb0c4 Allow PHPUnit 12
It will make it easier to address deprecations because it comes with an
argument for --stop-on-deprecations that allows to show the stack trace.
2025-10-12 21:24:49 +02:00

23 lines
652 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"
beStrictAboutOutputDuringTests="true"
>
<testsuites>
<testsuite name="Doctrine Data Fixtures Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<php>
<server name="DOCTRINE_DEPRECATIONS" value="trigger"/>
</php>
<source ignoreSuppressionOfDeprecations="true">
<include>
<directory>./src/</directory>
</include>
</source>
</phpunit>