TaskerBridges/phpunit.xml
Funky Waddle da1efaba55
Some checks are pending
CI / tasker-bridges (8.2) (push) Waiting to run
CI / tasker-bridges (8.3) (push) Waiting to run
feat: complete TaskerBridges with Symfony, Laravel, and Native adapters
2026-02-22 03:57:50 -06:00

25 lines
740 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"
executionOrder="depends,defects"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
failOnWarning="true">
<testsuites>
<testsuite name="Phred TaskerBridges Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage/>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>