.github
11 months ago
partials
5 years ago
src
11 months ago
tests
11 months ago
.gitignore
11 months ago
.phpstorm.meta.php
11 months ago
LICENSE
5 years ago
README.md
11 months ago
composer.json
11 months ago
phpcs.xml
11 months ago
phpstan.neon
11 months ago
phpunit.xml
11 months ago
phpunit.xml
17 lines
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutCoversAnnotation="true" stopOnRisky="true" verbose="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> |
| 3 | <coverage processUncoveredFiles="true"> |
| 4 | <include> |
| 5 | <directory suffix=".php">src</directory> |
| 6 | </include> |
| 7 | </coverage> |
| 8 | <testsuites> |
| 9 | <testsuite name="CheckWPRequirements"> |
| 10 | <directory suffix="-test.php">tests</directory> |
| 11 | </testsuite> |
| 12 | </testsuites> |
| 13 | <php> |
| 14 | <ini name="memory_limit" value="2G"/> |
| 15 | </php> |
| 16 | </phpunit> |
| 17 |