before switch to turbo

This commit is contained in:
2022-11-10 13:48:29 +01:00
parent 219f4097ff
commit 23139a5835
35 changed files with 731 additions and 139 deletions

View File

@@ -18,4 +18,5 @@ return [
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
SymfonyCasts\Bundle\VerifyEmail\SymfonyCastsVerifyEmailBundle::class => ['all' => true],
SymfonyCasts\Bundle\ResetPassword\SymfonyCastsResetPasswordBundle::class => ['all' => true],
Liip\ImagineBundle\LiipImagineBundle::class => ['all' => true],
];

View File

@@ -0,0 +1,24 @@
# Documentation on how to configure the bundle can be found at: https://symfony.com/doc/current/bundles/LiipImagineBundle/basic-usage.html
liip_imagine:
# valid drivers options include "gd" or "gmagick" or "imagick"
driver: "gd"
filter_sets:
squared_thumbnail_small:
filters:
thumbnail:
size: [100, 100]
mode: outbound
allow_upscale: true
squared_thumbnail_medium:
filters:
thumbnail:
size: [200, 200]
mode: outbound
allow_upscale: true
squared_thumbnail_large:
filters:
thumbnail:
size: [400, 400]
mode: outbound
allow_upscale: true

View File

@@ -0,0 +1,2 @@
framework:
lock: '%env(LOCK_DSN)%'

View File

@@ -28,6 +28,8 @@ security:
path: security_logout
switch_user: true
login_throttling: true
remember_me:
secret: '%kernel.secret%'
signature_properties: [password]

View File

@@ -0,0 +1,2 @@
_liip_imagine:
resource: "@LiipImagineBundle/Resources/config/routing.yaml"

View File

@@ -11,6 +11,9 @@ services:
autowire: true # Automatically injects dependencies in your services.
autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
# bind
# $var: 'content'
# makes classes in src/ available to be used as services
# this creates a service per class whose id is the fully-qualified class name
App\: