<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="true"
         backupStaticAttributes="false"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         bootstrap="tests/bootstrap.php"
>
  <testsuites>
    <testsuite name="Symfony Flex Test Suite">
      <directory>./tests</directory>
    </testsuite>
  </testsuites>

  <php>
    <ini name="error_reporting" value="-1" />
    <env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
  </php>

  <filter>
      <whitelist>
          <directory>./src/</directory>
      </whitelist>
  </filter>
</phpunit>
