mirror of
https://github.com/flarum/framework.git
synced 2024-11-24 01:38:28 +08:00
6b336c5ea8
* chore: phpunit 10 * chore: config * Apply fixes from StyleCI * chore: phpunit 11 (php 8.2 minimum requirement) * feat: laravel 11 * Apply fixes from StyleCI * feat: carbon v3 * fixes
25 lines
782 B
XML
25 lines
782 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.5/phpunit.xsd"
|
|
backupGlobals="false"
|
|
cacheDirectory=".phpunit.cache"
|
|
backupStaticProperties="false"
|
|
colors="true"
|
|
processIsolation="true"
|
|
stopOnFailure="false"
|
|
bootstrap="../../../php-packages/testing/bootstrap/monorepo.php"
|
|
>
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">../src/</directory>
|
|
</include>
|
|
</source>
|
|
<testsuites>
|
|
<testsuite name="Flarum Integration Tests">
|
|
<directory suffix="Test.php">./integration</directory>
|
|
<exclude>./integration/tmp</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|