mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
1eccd070c2
- Add XSD schema, so it can be validated (and PHPStorm provides auto-completion) - Drop backupGlobals option, because false is the default value
18 lines
597 B
XML
18 lines
597 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/8.5/phpunit.xsd"
|
|
bootstrap="./tests/bootstrap.php"
|
|
colors="true"
|
|
verbose="true">
|
|
<testsuites>
|
|
<testsuite name="ramsey/uuid test suite">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|