mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
Note that we upgrade to the 2.x branch of the dependency, as the 3.x branch requires PHP version 8.2 or later. There's no reason for us to move our minimum supported version of PHP just yet.
16 lines
478 B
XML
16 lines
478 B
XML
<?xml version="1.0"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="test/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory=".phpunit.cache">
|
|
<coverage/>
|
|
<testsuites>
|
|
<testsuite name="Application">
|
|
<directory>test</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<logging/>
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">src</directory>
|
|
</include>
|
|
</source>
|
|
</phpunit>
|