/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Lock/phpunit.xml.dist
44 строки
1 KB
Nicolas Grekas
Update XSD references in phpunit.xml.dist files
18 апр 2026, 16:18
18 апр 2026, 16:18
750f5eb
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/13.1/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" failOnDeprecation="true" failOnRisky="true" failOnWarning="true" > <php> <ini name="error_reporting" value="-1" /> <env name="REDIS_HOST" value="localhost" /> <env name="MEMCACHED_HOST" value="localhost" /> <env name="MONGODB_URI" value="mongodb://localhost:27017" /> <env name="ZOOKEEPER_HOST" value="localhost" /> </php> <testsuites> <testsuite name="Symfony Lock Component Test Suite"> <directory>./Tests/</directory> </testsuite> </testsuites> <source ignoreSuppressionOfDeprecations="true"> <deprecationTrigger ignoreUndefinedTriggers="true"> <function>trigger_deprecation</function> <method>Doctrine\Deprecations\Deprecation::trigger</method> <method>Doctrine\Deprecations\Deprecation::triggerIfCalledFromOutside</method> </deprecationTrigger> <include> <directory>./</directory> </include> <exclude> <directory>./Tests</directory> <directory>./vendor</directory> </exclude> </source> <extensions> <bootstrap class="Symfony\Bridge\PhpUnit\SymfonyExtension" /> </extensions> </phpunit>