Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

14 lines
426B

  1. #!/usr/bin/env php
  2. <?php
  3. if (!file_exists(dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit.php')) {
  4. echo "Unable to find the `simple-phpunit.php` script in `vendor/symfony/phpunit-bridge/bin/`.\n";
  5. exit(1);
  6. }
  7. if (false === getenv('SYMFONY_PHPUNIT_DIR')) {
  8. putenv('SYMFONY_PHPUNIT_DIR='.__DIR__.'/.phpunit');
  9. }
  10. require dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit.php';