10 lines
438 B
Plaintext
Raw Normal View History

2017-03-15 13:38:23 +01:00
#!/usr/bin/env php
<?php
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);
}
putenv('SYMFONY_PHPUNIT_DIR='.__DIR__.'/.phpunit');
2017-05-31 19:36:17 +02:00
putenv('SYMFONY_PHPUNIT_VERSION=6.0');
2017-03-15 13:38:23 +01:00
require __DIR__.'/vendor/symfony/phpunit-bridge/bin/simple-phpunit';