File: phpunit

package info (click to toggle)
symfony 4.4.19%2Bdfsg-2%2Bdeb11u6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 63,632 kB
  • sloc: php: 390,290; xml: 7,395; javascript: 561; sh: 524; makefile: 158; pascal: 79
file content (26 lines) | stat: -rwxr-xr-x 951 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env php
<?php

// Cache-Id: 2020-04-10 20:30 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=7.5');
    } elseif (\PHP_VERSION_ID < 70300) {
        putenv('SYMFONY_PHPUNIT_VERSION=8.5');
    } else {
        putenv('SYMFONY_PHPUNIT_VERSION=9.5');
    }
}
if (!getenv('SYMFONY_PATCH_TYPE_DECLARATIONS')) {
    putenv('SYMFONY_PATCH_TYPE_DECLARATIONS=deprecations=1');
}
if (getcwd() === realpath(__DIR__.'/src/Symfony/Bridge/PhpUnit')) {
    putenv('SYMFONY_DEPRECATIONS_HELPER=disabled');
}
putenv('SYMFONY_PHPUNIT_DIR='.__DIR__.'/.phpunit');
require __DIR__.'/vendor/symfony/phpunit-bridge/bin/simple-phpunit';