1
0
Fork 0
composer/phpunit.xml.dist

41 lines
1.1 KiB
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
2020-02-07 04:43:57 +00:00
strict="false"
processIsolation="false"
stopOnFailure="false"
bootstrap="tests/bootstrap.php"
>
2020-02-07 04:43:57 +00:00
<php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak"/>
</php>
<testsuites>
<testsuite name="Composer Test Suite">
<directory>./tests/Composer/</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>slow</group>
<group>legacy</group>
</exclude>
</groups>
<filter>
<whitelist>
<directory>./src/Composer/</directory>
2012-01-15 12:50:29 +00:00
<exclude>
<file>./src/Composer/Autoload/ClassLoader.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>