- EmailTracking entity + repository + pixel tracking controller - CspReportController: filter noise, alert on real violations - RedirectController: external redirect warning page - UnsubscribeManager: HMAC-based unsubscribe with hashed storage - MailerService: rewrite with S/MIME, tracking, unsubscribe headers - ViteAssetExtension: add nonce CSP via Nelmio, isMobile - composer: add stripe/stripe-php, mobiledetect - Templates: add home/index, update base.html.twig with vite_asset - Email template: rebrand to E-Ticket Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
41 lines
1.6 KiB
YAML
41 lines
1.6 KiB
YAML
# yaml-language-server: $schema=../vendor/symfony/dependency-injection/Loader/schema/services.schema.json
|
|
|
|
# This file is the entry point to configure your own services.
|
|
# Files in the packages/ subdirectory configure your dependencies.
|
|
# See also https://symfony.com/doc/current/service_container/import.html
|
|
|
|
# Put parameters here that don't need to change on each machine where the app is deployed
|
|
# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration
|
|
parameters:
|
|
|
|
services:
|
|
# default configuration for services in *this* file
|
|
_defaults:
|
|
autowire: true # Automatically injects dependencies in your services.
|
|
autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
|
|
|
|
# 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\:
|
|
resource: '../src/'
|
|
|
|
# add more service definitions when explicit configuration is needed
|
|
# please note that last definitions always *replace* previous ones
|
|
|
|
s3_client:
|
|
class: Aws\S3\S3Client
|
|
arguments:
|
|
-
|
|
version: 'latest'
|
|
region: '%env(S3_REGION)%'
|
|
endpoint: '%env(S3_ENDPOINT)%'
|
|
use_path_style_endpoint: true
|
|
credentials:
|
|
key: '%env(S3_ACCESS_KEY)%'
|
|
secret: '%env(S3_SECRET_KEY)%'
|
|
|
|
App\Twig\ViteAssetExtension:
|
|
arguments:
|
|
$manifest: '%kernel.project_dir%/public/build/.vite/manifest.json'
|
|
|