Major refactoring cleanup: - Add new controller architecture (class-controller-*.php) - Add new settings-v2 UI (views/settings-v2/) - Add new CSS architecture (agentic-sidebar.css, tokens) - Add esbuild build pipeline (scripts/build.js, package.json) - Add composer dependencies (vendor/) - Add frontend src directory (assets/js/src/index.jsx) - Add documentation files - Remove old/obsolete files (class-settings.php, old CSS) This commits all pending changes from previous refactoring efforts.
33 lines
1.0 KiB
XML
33 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="vendor/autoload.php"
|
|
beStrictAboutOutputDuringTests="true"
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Graphviz suite">
|
|
<directory>./tests/phpDocumentor/GraphViz</directory>
|
|
</testsuite>
|
|
<testsuite name="PHPStan suite">
|
|
<directory>./tests/phpDocumentor/PHPStan</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<logging>
|
|
<log type="coverage-clover" target="build/logs/clover.xml" />
|
|
<log type="junit" target="build/logs/junit.xml" />
|
|
</logging>
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|