Skip to content

Commit

Permalink
Synchronize remaining recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Coderberg committed Jul 9, 2024
1 parent 9ab76ea commit bbc5a5a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 18 deletions.
2 changes: 1 addition & 1 deletion config/packages/doctrine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ doctrine:
#server_version: '16'

profiling_collect_backtrace: '%kernel.debug%'
use_savepoints: true
use_savepoints: false
orm:
auto_generate_proxy_classes: true
enable_lazy_ghost_objects: true
Expand Down
2 changes: 0 additions & 2 deletions config/packages/routing.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
framework:
router:
utf8: true

# Configure how to generate URLs in non-HTTP contexts, such as CLI commands.
# See https://symfony.com/doc/current/routing.html#generating-urls-in-commands
#default_uri: http://localhost
Expand Down
2 changes: 1 addition & 1 deletion config/packages/twig.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
twig:
default_path: '%kernel.project_dir%/templates'
file_name_pattern: '*.twig'
globals:
app_version: '%app_version%'
locales: '%app_locales%'
Expand Down
16 changes: 8 additions & 8 deletions symfony.lock
Original file line number Diff line number Diff line change
Expand Up @@ -244,12 +244,12 @@
}
},
"symfony/phpunit-bridge": {
"version": "6.4",
"version": "7.1",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
"version": "6.3",
"ref": "1f5830c331065b6e4c9d5fa2105e322d29fcd573"
"ref": "a411a0480041243d97382cac7984f7dce7813c08"
},
"files": [
".env.test",
Expand All @@ -259,12 +259,12 @@
]
},
"symfony/routing": {
"version": "6.4",
"version": "7.0",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
"version": "6.2",
"ref": "e0a11b4ccb8c9e70b574ff5ad3dfdcd41dec5aa6"
"version": "7.0",
"ref": "21b72649d5622d8f7da329ffb5afb232a023619d"
},
"files": [
"config/packages/routing.yaml",
Expand Down Expand Up @@ -298,12 +298,12 @@
]
},
"symfony/twig-bundle": {
"version": "6.4",
"version": "7.0",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
"version": "6.3",
"ref": "b7772eb20e92f3fb4d4fe756e7505b4ba2ca1a2c"
"version": "6.4",
"ref": "cab5fd2a13a45c266d45a7d9337e28dee6272877"
},
"files": [
"config/packages/twig.yaml",
Expand Down
12 changes: 6 additions & 6 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?php

declare(strict_types=1);

use Symfony\Component\Dotenv\Dotenv;

require_once dirname(__DIR__).'/vendor/autoload.php';
require dirname(__DIR__).'/vendor/autoload.php';

if (file_exists(dirname(__DIR__).'/config/bootstrap.php')) {
require_once dirname(__DIR__).'/config/bootstrap.php';
} elseif (method_exists(Dotenv::class, 'bootEnv')) {
if (method_exists(Dotenv::class, 'bootEnv')) {
(new Dotenv())->bootEnv(dirname(__DIR__).'/.env');
}

if ($_SERVER['APP_DEBUG']) {
umask(0000);
}

if (isset($_ENV['BOOTSTRAP_CLEAR_CACHE_ENV'])) {
// executes the "php bin/console cache:clear" command
passthru(sprintf(
Expand Down

0 comments on commit bbc5a5a

Please sign in to comment.