Daniel Siepmann
808da86d12
Use newest symfony version, newest PHP and newest PHPUnit. Remove prophecy dependency.
26 lines
722 B
XML
26 lines
722 B
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
cacheDirectory=".phpunit.cache"
|
|
backupStaticProperties="false"
|
|
requireCoverageMetadata="false"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory>tests/Unit/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">src</directory>
|
|
</include>
|
|
</coverage>
|
|
</phpunit>
|