#!/usr/bin/env php
<?php

// Cache-Id: 2019-08-09 13:00 UTC

if (!file_exists(__DIR__.'/vendor/symfony/phpunit-bridge/bin/simple-phpunit')) {
    echo "Unable to find the `simple-phpunit` script in `vendor/symfony/phpunit-bridge/bin/`.\nPlease run `composer update` before running this command.\n";
    exit(1);
}
if (!getenv('SYMFONY_PHPUNIT_VERSION')) {
    if (\PHP_VERSION_ID >= 70200) {
        putenv('SYMFONY_PHPUNIT_VERSION=8.3');
    } elseif (\PHP_VERSION_ID >= 70000) {
        putenv('SYMFONY_PHPUNIT_VERSION=6.5');
    }
}
putenv('SYMFONY_PHPUNIT_DIR='.__DIR__.'/.phpunit');
require __DIR__.'/vendor/symfony/phpunit-bridge/bin/simple-phpunit';
