mirror of
https://github.com/ivuorinen/curly.git
synced 2026-01-26 18:40:25 +00:00
* chore(deps): update dependency phpunit/phpunit to v10 Signed-off-by: Renovate Bot <bot@renovateapp.com> * Updated phpunit.xml --------- Signed-off-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ismo Vuorinen <ismo.vuorinen@vincit.fi>
14 lines
509 B
XML
14 lines
509 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">./src</directory>
|
|
</include>
|
|
</coverage>
|
|
<testsuites>
|
|
<testsuite name="Test Suite">
|
|
<directory suffix="Test.php">./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|