mirror of
https://github.com/Seldaek/monolog.git
synced 2025-07-31 02:10:22 +02:00
* Upgrade phpstan, phpunit * Fix phpunit deprecation * Fix hg tests * Fix php-console tests * Fix phpunit on 8.1 * Bump phpconsole
29 lines
790 B
XML
29 lines
790 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"
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
displayDetailsOnTestsThatTriggerWarnings="true"
|
|
displayDetailsOnSkippedTests="true"
|
|
displayDetailsOnTestsThatTriggerNotices="true"
|
|
beStrictAboutTestsThatDoNotTestAnything="false">
|
|
<testsuites>
|
|
<testsuite name="Monolog Test Suite">
|
|
<directory>tests/Monolog/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<coverage/>
|
|
|
|
<php>
|
|
<ini name="date.timezone" value="UTC"/>
|
|
</php>
|
|
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">src/Monolog/</directory>
|
|
</include>
|
|
</source>
|
|
|
|
</phpunit>
|