diff --git a/.gitignore b/.gitignore index d71b679..2f54f0e 100644 --- a/.gitignore +++ b/.gitignore @@ -12,7 +12,6 @@ ###< symfony/framework-bundle ### ###> symfony/phpunit-bridge ### -.phpunit .phpunit.result.cache /phpunit.xml ###< symfony/phpunit-bridge ### diff --git a/bin/phpunit b/bin/phpunit index 4d1ed05..f26f2c7 100755 --- a/bin/phpunit +++ b/bin/phpunit @@ -1,13 +1,19 @@ #!/usr/bin/env php + - + @@ -21,11 +23,11 @@ - - + + src - - + + diff --git a/symfony.lock b/symfony.lock index 3dc9141..9cd51a3 100644 --- a/symfony.lock +++ b/symfony.lock @@ -487,12 +487,12 @@ "version": "v6.0.2" }, "symfony/phpunit-bridge": { - "version": "5.1", + "version": "6.2", "recipe": { "repo": "github.com/symfony/recipes", - "branch": "master", - "version": "5.1", - "ref": "bf16921ef8309a81d9f046e9b6369c46bcbd031f" + "branch": "main", + "version": "5.3", + "ref": "819d3d2ffa4590eba0b8f4f3e5e89415ee4e45c3" }, "files": [ ".env.test", diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 469dcce..3181151 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -9,3 +9,7 @@ if (file_exists(dirname(__DIR__).'/config/bootstrap.php')) { } elseif (method_exists(Dotenv::class, 'bootEnv')) { (new Dotenv())->bootEnv(dirname(__DIR__).'/.env'); } + +if ($_SERVER['APP_DEBUG']) { + umask(0000); +}