mirror of
https://github.com/Respect/Validation.git
synced 2026-03-14 14:25:45 +01:00
This commit removes validators described in #1642, refactoring to clean up after their removal. - Url was refactored to use the function `filter_var` instead. - tests/bootstrap.php is no longer needed and was removed. - Updated migration guide with recommendations for replacements.
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="vendor/autoload.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>
|