mirror of
https://github.com/Respect/Validation.git
synced 2026-03-14 22:35:45 +01:00
We've always considered renaming this directory, as it's not a common standard to name `library` the directory where the source code of a library it. Having it as `src/` is a common pattern we find in several PHP libraries these days. Acked-by: Alexandre Gomes Gaigalas <alganet@gmail.com>
23 lines
745 B
XML
23 lines
745 B
XML
<?xml version="1.0"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
|
|
bootstrap="tests/bootstrap.php"
|
|
backupGlobals="false"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
cacheDirectory=".phpunit.cache"
|
|
backupStaticProperties="false">
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory suffix="Test.php">tests/unit/</directory>
|
|
</testsuite>
|
|
<testsuite name="feature">
|
|
<directory suffix="Test.php">./tests/feature</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">src/</directory>
|
|
</include>
|
|
</source>
|
|
</phpunit>
|