Upgrade recipes: symfony/phpunit-bridge

This commit is contained in:
Julien Fastré 2023-09-06 12:19:04 +02:00
parent cd876bd889
commit fb1259ba81
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
4 changed files with 9 additions and 5 deletions

1
.gitignore vendored
View File

@ -63,7 +63,6 @@ yarn-error.log
###< symfony/webpack-encore-bundle ###
###> symfony/phpunit-bridge ###
.phpunit
.phpunit.result.cache
/phpunit.xml
###< symfony/phpunit-bridge ###

View File

@ -33,6 +33,7 @@
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
<!-- Uncomment when adding extensions
<extensions>
</extensions>
</phpunit>

View File

@ -619,12 +619,12 @@
"version": "v5.1.3"
},
"symfony/phpunit-bridge": {
"version": "5.1",
"version": "5.4",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "master",
"version": "5.1",
"ref": "bf16921ef8309a81d9f046e9b6369c46bcbd031f"
"branch": "main",
"version": "5.3",
"ref": "6df817da0ca2b8cddbb6e690051d7f2b45530d06"
},
"files": [
".env.test",

View File

@ -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);
}