diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 61b6c63d40..f46ac03b1c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,10 @@ on: cron: "0 1 * * 6" # Run at 1am every Saturday workflow_dispatch: ~ +concurrency: + group: build-${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: tests: runs-on: ubuntu-latest diff --git a/config/packages/_sylius.yaml b/config/packages/_sylius.yaml index 839fe4d60c..f7b5a1d15c 100644 --- a/config/packages/_sylius.yaml +++ b/config/packages/_sylius.yaml @@ -10,10 +10,6 @@ imports: parameters: sylius_core.public_dir: '%kernel.project_dir%/public' -when@dev: - sylius_api: - enabled: true - sylius_addressing: resources: address: @@ -258,14 +254,3 @@ sylius_user: user: classes: model: App\Entity\User\UserOAuth - -sylius_shop: - product_grid: - include_all_descendants: true - -sylius_theme: - sources: - filesystem: - scan_depth: 1 - directories: - - "%kernel.project_dir%/themes" diff --git a/config/packages/dev/monolog.yaml b/config/packages/dev/monolog.yaml deleted file mode 100644 index da2b092de1..0000000000 --- a/config/packages/dev/monolog.yaml +++ /dev/null @@ -1,9 +0,0 @@ -monolog: - handlers: - main: - type: stream - path: "%kernel.logs_dir%/%kernel.environment%.log" - level: debug - firephp: - type: firephp - level: info diff --git a/config/packages/dev/nelmio_alice.yaml b/config/packages/dev/nelmio_alice.yaml deleted file mode 100644 index e2ae069cd4..0000000000 --- a/config/packages/dev/nelmio_alice.yaml +++ /dev/null @@ -1,3 +0,0 @@ -nelmio_alice: - functions_blacklist: - - 'current' diff --git a/config/packages/doctrine.yaml b/config/packages/doctrine.yaml index 9c449835c4..fe81b4f407 100644 --- a/config/packages/doctrine.yaml +++ b/config/packages/doctrine.yaml @@ -1,23 +1,87 @@ -parameters: - # Adds a fallback DATABASE_URL if the env var is not set. - # This allows you to run cache:warmup even if your - # environment variables are not available yet. - # You should not need to change this value. - env(DATABASE_URL): '' - doctrine: dbal: url: '%env(resolve:DATABASE_URL)%' + # IMPORTANT: You MUST configure your server version, + # either here or in the DATABASE_URL env var (see .env file) + #server_version: '16' + + profiling_collect_backtrace: '%kernel.debug%' + use_savepoints: false orm: - auto_generate_proxy_classes: '%kernel.debug%' - entity_managers: - default: - auto_mapping: true - mappings: - App: - is_bundle: false - type: attribute - dir: '%kernel.project_dir%/src/Entity' - prefix: 'App\Entity' - alias: App + auto_generate_proxy_classes: true + enable_lazy_ghost_objects: true + report_fields_where_declared: true + validate_xml_mapping: true + naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware + auto_mapping: true + mappings: + App: + type: attribute + is_bundle: false + dir: '%kernel.project_dir%/src/Entity' + prefix: 'App\Entity' + alias: App + controller_resolver: + auto_mapping: false + +framework: + cache: + pools: + doctrine.result_cache_pool: + adapter: cache.app + doctrine.system_cache_pool: + adapter: cache.system + +when@prod: + doctrine: + orm: + auto_generate_proxy_classes: false + proxy_dir: '%kernel.build_dir%/doctrine/orm/Proxies' + query_cache_driver: + type: pool + pool: doctrine.system_cache_pool + result_cache_driver: + type: pool + pool: doctrine.result_cache_pool + framework: + cache: + pools: + doctrine.result_cache_pool: + adapter: cache.app + doctrine.system_cache_pool: + adapter: cache.system + +when@test: + doctrine: + dbal: + # "TEST_TOKEN" is typically set by ParaTest + dbname_suffix: '_test%env(default::TEST_TOKEN)%' + +when@test_cached: + doctrine: + orm: + entity_managers: + default: + metadata_cache_driver: + type: service + id: doctrine.system_cache_provider + query_cache_driver: + type: service + id: doctrine.system_cache_provider + result_cache_driver: + type: service + id: doctrine.result_cache_provider + services: + doctrine.result_cache_provider: + class: Doctrine\Common\Cache\Psr6\DoctrineProvider + public: false + factory: ['Doctrine\Common\Cache\Psr6\DoctrineProvider', 'wrap'] + arguments: + - '@doctrine.result_cache_pool' + doctrine.system_cache_provider: + class: Doctrine\Common\Cache\Psr6\DoctrineProvider + public: false + factory: [ 'Doctrine\Common\Cache\Psr6\DoctrineProvider', 'wrap' ] + arguments: + - '@doctrine.system_cache_pool' diff --git a/config/packages/monolog.yaml b/config/packages/monolog.yaml index 19a0f7902a..47b2ac2c4b 100644 --- a/config/packages/monolog.yaml +++ b/config/packages/monolog.yaml @@ -2,6 +2,30 @@ monolog: channels: - deprecation # Deprecations are logged in the dedicated "deprecation" channel when it exists +when@prod: + monolog: + handlers: + main: + type: fingers_crossed + action_level: error + handler: nested + excluded_http_codes: [404, 405] + buffer_size: 50 # How many messages should be saved? Prevent memory leaks + nested: + type: stream + path: php://stderr + level: debug + formatter: monolog.formatter.json + console: + type: console + process_psr_3_messages: false + channels: ["!event", "!doctrine"] + deprecation: + type: stream + channels: [deprecation] + path: php://stderr + formatter: monolog.formatter.json + when@dev: monolog: handlers: @@ -23,7 +47,7 @@ when@dev: process_psr_3_messages: false channels: ["!event", "!doctrine", "!console"] -when@test: +when@test: &monolog_test monolog: handlers: main: @@ -36,26 +60,4 @@ when@test: path: "%kernel.logs_dir%/%kernel.environment%.log" level: debug -when@prod: - monolog: - handlers: - main: - type: fingers_crossed - action_level: error - handler: nested - excluded_http_codes: [404, 405] - buffer_size: 50 # How many messages should be saved? Prevent memory leaks - nested: - type: stream - path: php://stderr - level: debug - formatter: monolog.formatter.json - console: - type: console - process_psr_3_messages: false - channels: ["!event", "!doctrine"] - deprecation: - type: stream - channels: [deprecation] - path: php://stderr - formatter: monolog.formatter.json +when@test_cached: *monolog_test diff --git a/config/packages/nelmio_alice.yaml b/config/packages/nelmio_alice.yaml index e82c329825..b74f99c979 100644 --- a/config/packages/nelmio_alice.yaml +++ b/config/packages/nelmio_alice.yaml @@ -1,4 +1,4 @@ -when@dev: &dev +when@dev: &nelmio_alice_dev nelmio_alice: functions_blacklist: - 'current' @@ -9,4 +9,4 @@ when@dev: &dev - 'md5' - 'sha1' -when@test: *dev +when@test: *nelmio_alice_dev diff --git a/config/packages/nyholm_psr7.yaml b/config/packages/nyholm_psr7.yaml deleted file mode 100644 index ade8312498..0000000000 --- a/config/packages/nyholm_psr7.yaml +++ /dev/null @@ -1,11 +0,0 @@ -services: - # Register nyholm/psr7 services for autowiring with PSR-17 (HTTP factories) - Psr\Http\Message\RequestFactoryInterface: '@nyholm.psr7.psr17_factory' - Psr\Http\Message\ResponseFactoryInterface: '@nyholm.psr7.psr17_factory' - Psr\Http\Message\ServerRequestFactoryInterface: '@nyholm.psr7.psr17_factory' - Psr\Http\Message\StreamFactoryInterface: '@nyholm.psr7.psr17_factory' - Psr\Http\Message\UploadedFileFactoryInterface: '@nyholm.psr7.psr17_factory' - Psr\Http\Message\UriFactoryInterface: '@nyholm.psr7.psr17_factory' - - nyholm.psr7.psr17_factory: - class: Nyholm\Psr7\Factory\Psr17Factory diff --git a/config/packages/payum.yaml b/config/packages/payum.yaml deleted file mode 100644 index aaf3bb6da0..0000000000 --- a/config/packages/payum.yaml +++ /dev/null @@ -1,4 +0,0 @@ -#payum: -# gateways: -# offline: -# factory: offline diff --git a/config/packages/prod/doctrine.yaml b/config/packages/prod/doctrine.yaml deleted file mode 100644 index 55ea750a14..0000000000 --- a/config/packages/prod/doctrine.yaml +++ /dev/null @@ -1,35 +0,0 @@ -doctrine: - orm: - entity_managers: - default: - metadata_cache_driver: - type: service - id: doctrine.system_cache_provider - query_cache_driver: - type: service - id: doctrine.system_cache_provider - result_cache_driver: - type: service - id: doctrine.result_cache_provider - -services: - doctrine.result_cache_provider: - class: Doctrine\Common\Cache\Psr6\DoctrineProvider - public: false - factory: ['Doctrine\Common\Cache\Psr6\DoctrineProvider', 'wrap'] - arguments: - - '@doctrine.result_cache_pool' - doctrine.system_cache_provider: - class: Doctrine\Common\Cache\Psr6\DoctrineProvider - public: false - factory: [ 'Doctrine\Common\Cache\Psr6\DoctrineProvider', 'wrap' ] - arguments: - - '@doctrine.system_cache_pool' - -framework: - cache: - pools: - doctrine.result_cache_pool: - adapter: cache.app - doctrine.system_cache_pool: - adapter: cache.system diff --git a/config/packages/prod/monolog.yaml b/config/packages/prod/monolog.yaml deleted file mode 100644 index 646121143a..0000000000 --- a/config/packages/prod/monolog.yaml +++ /dev/null @@ -1,10 +0,0 @@ -monolog: - handlers: - main: - type: fingers_crossed - action_level: error - handler: nested - nested: - type: stream - path: "%kernel.logs_dir%/%kernel.environment%.log" - level: debug diff --git a/config/packages/security.yaml b/config/packages/security.yaml index af38e75096..daa359aafd 100644 --- a/config/packages/security.yaml +++ b/config/packages/security.yaml @@ -128,3 +128,10 @@ security: - { path: "%sylius.security.api_shop_account_regex%/.*", role: ROLE_USER } - { path: "%sylius.security.api_shop_route%/customers/token", role: PUBLIC_ACCESS } - { path: "%sylius.security.api_shop_regex%/.*", role: PUBLIC_ACCESS } + +when@test: &test + security: + password_hashers: + Sylius\Component\User\Model\UserInterface: plaintext + +when@test_cached: *test diff --git a/config/packages/sylius_admin.yaml b/config/packages/sylius_admin.yaml new file mode 100644 index 0000000000..4f052275ee --- /dev/null +++ b/config/packages/sylius_admin.yaml @@ -0,0 +1,6 @@ +when@test: &sylius_admin_test + sylius_admin: + notifications: + hub_enabled: false + +when@test_cached: *sylius_admin_test diff --git a/config/packages/sylius_api.yaml b/config/packages/sylius_api.yaml new file mode 100644 index 0000000000..2bdd2287e2 --- /dev/null +++ b/config/packages/sylius_api.yaml @@ -0,0 +1,3 @@ +when@dev: + sylius_api: + enabled: true diff --git a/config/packages/sylius_channel.yaml b/config/packages/sylius_channel.yaml new file mode 100644 index 0000000000..940d56e2a8 --- /dev/null +++ b/config/packages/sylius_channel.yaml @@ -0,0 +1,3 @@ +when@test_cached: + sylius_channel: + debug: true diff --git a/config/packages/sylius_shop.yaml b/config/packages/sylius_shop.yaml new file mode 100644 index 0000000000..a3bb877c68 --- /dev/null +++ b/config/packages/sylius_shop.yaml @@ -0,0 +1,3 @@ +sylius_shop: + product_grid: + include_all_descendants: true diff --git a/config/packages/sylius_theme.yaml b/config/packages/sylius_theme.yaml new file mode 100644 index 0000000000..49dcabcdaf --- /dev/null +++ b/config/packages/sylius_theme.yaml @@ -0,0 +1,13 @@ +sylius_theme: + sources: + filesystem: + scan_depth: 1 + directories: + - "%kernel.project_dir%/themes" + +when@test: &sylius_theme_test + sylius_theme: + sources: + test: ~ + +when@test_cached: *sylius_theme_test diff --git a/config/packages/sylius_uploader.yaml b/config/packages/sylius_uploader.yaml new file mode 100644 index 0000000000..bb287b8a6e --- /dev/null +++ b/config/packages/sylius_uploader.yaml @@ -0,0 +1,6 @@ +when@test: &sylius_uploader_test + services: + sylius.generator.image_path: + class: Sylius\Behat\Service\Generator\UploadedImagePathGenerator + +when@test_cached: *sylius_uploader_test diff --git a/config/packages/test/fidry_alice_data_fixtures.yaml b/config/packages/test/fidry_alice_data_fixtures.yaml deleted file mode 100644 index ae4e694cfa..0000000000 --- a/config/packages/test/fidry_alice_data_fixtures.yaml +++ /dev/null @@ -1,2 +0,0 @@ -fidry_alice_data_fixtures: - default_purge_mode: no_purge diff --git a/config/packages/test/monolog.yaml b/config/packages/test/monolog.yaml deleted file mode 100644 index 7e2b9e3aae..0000000000 --- a/config/packages/test/monolog.yaml +++ /dev/null @@ -1,6 +0,0 @@ -monolog: - handlers: - main: - type: stream - path: "%kernel.logs_dir%/%kernel.environment%.log" - level: error diff --git a/config/packages/test/nelmio_alice.yaml b/config/packages/test/nelmio_alice.yaml deleted file mode 100644 index caec543dea..0000000000 --- a/config/packages/test/nelmio_alice.yaml +++ /dev/null @@ -1,2 +0,0 @@ -imports: - - { resource: ../dev/nelmio_alice.yaml } diff --git a/config/packages/test/security.yaml b/config/packages/test/security.yaml deleted file mode 100644 index 4071d31995..0000000000 --- a/config/packages/test/security.yaml +++ /dev/null @@ -1,6 +0,0 @@ -security: - password_hashers: - Sylius\Component\User\Model\UserInterface: - algorithm: argon2i - time_cost: 3 - memory_cost: 10 diff --git a/config/packages/test/sylius_admin.yaml b/config/packages/test/sylius_admin.yaml deleted file mode 100644 index ef785df5f5..0000000000 --- a/config/packages/test/sylius_admin.yaml +++ /dev/null @@ -1,3 +0,0 @@ -sylius_admin: - notifications: - hub_enabled: false diff --git a/config/packages/test/sylius_theme.yaml b/config/packages/test/sylius_theme.yaml deleted file mode 100644 index 4d34199f5c..0000000000 --- a/config/packages/test/sylius_theme.yaml +++ /dev/null @@ -1,3 +0,0 @@ -sylius_theme: - sources: - test: ~ diff --git a/config/packages/test/sylius_uploader.yaml b/config/packages/test/sylius_uploader.yaml deleted file mode 100644 index 65256f7f2b..0000000000 --- a/config/packages/test/sylius_uploader.yaml +++ /dev/null @@ -1,3 +0,0 @@ -services: - sylius.generator.image_path: - class: Sylius\Behat\Service\Generator\UploadedImagePathGenerator diff --git a/config/packages/test_cached/doctrine.yaml b/config/packages/test_cached/doctrine.yaml deleted file mode 100644 index 55ea750a14..0000000000 --- a/config/packages/test_cached/doctrine.yaml +++ /dev/null @@ -1,35 +0,0 @@ -doctrine: - orm: - entity_managers: - default: - metadata_cache_driver: - type: service - id: doctrine.system_cache_provider - query_cache_driver: - type: service - id: doctrine.system_cache_provider - result_cache_driver: - type: service - id: doctrine.result_cache_provider - -services: - doctrine.result_cache_provider: - class: Doctrine\Common\Cache\Psr6\DoctrineProvider - public: false - factory: ['Doctrine\Common\Cache\Psr6\DoctrineProvider', 'wrap'] - arguments: - - '@doctrine.result_cache_pool' - doctrine.system_cache_provider: - class: Doctrine\Common\Cache\Psr6\DoctrineProvider - public: false - factory: [ 'Doctrine\Common\Cache\Psr6\DoctrineProvider', 'wrap' ] - arguments: - - '@doctrine.system_cache_pool' - -framework: - cache: - pools: - doctrine.result_cache_pool: - adapter: cache.app - doctrine.system_cache_pool: - adapter: cache.system diff --git a/config/packages/test_cached/fidry_alice_data_fixtures.yaml b/config/packages/test_cached/fidry_alice_data_fixtures.yaml deleted file mode 100644 index f5c8649c85..0000000000 --- a/config/packages/test_cached/fidry_alice_data_fixtures.yaml +++ /dev/null @@ -1,2 +0,0 @@ -imports: - - { resource: "../test/fidry_alice_data_fixtures.yaml" } diff --git a/config/packages/test_cached/monolog.yaml b/config/packages/test_cached/monolog.yaml deleted file mode 100644 index 71bef591c9..0000000000 --- a/config/packages/test_cached/monolog.yaml +++ /dev/null @@ -1,2 +0,0 @@ -imports: - - { resource: "../test/monolog.yaml" } diff --git a/config/packages/test_cached/security.yaml b/config/packages/test_cached/security.yaml deleted file mode 100644 index f487c5a391..0000000000 --- a/config/packages/test_cached/security.yaml +++ /dev/null @@ -1,2 +0,0 @@ -imports: - - { resource: '../test/security.yaml' } diff --git a/config/packages/test_cached/sylius_admin.yaml b/config/packages/test_cached/sylius_admin.yaml deleted file mode 100644 index 11140b7384..0000000000 --- a/config/packages/test_cached/sylius_admin.yaml +++ /dev/null @@ -1,2 +0,0 @@ -imports: - - { resource: "../test/sylius_admin.yaml" } diff --git a/config/packages/test_cached/sylius_channel.yaml b/config/packages/test_cached/sylius_channel.yaml deleted file mode 100644 index bab83ef25a..0000000000 --- a/config/packages/test_cached/sylius_channel.yaml +++ /dev/null @@ -1,2 +0,0 @@ -sylius_channel: - debug: true diff --git a/config/packages/test_cached/sylius_theme.yaml b/config/packages/test_cached/sylius_theme.yaml deleted file mode 100644 index 9fb4c94bd0..0000000000 --- a/config/packages/test_cached/sylius_theme.yaml +++ /dev/null @@ -1,2 +0,0 @@ -imports: - - { resource: "../test/sylius_theme.yaml" } diff --git a/config/packages/test_cached/sylius_uploader.yaml b/config/packages/test_cached/sylius_uploader.yaml deleted file mode 100644 index cfa727e27c..0000000000 --- a/config/packages/test_cached/sylius_uploader.yaml +++ /dev/null @@ -1,2 +0,0 @@ -imports: - - { resource: "../test/sylius_uploader.yaml" } diff --git a/config/packages/twig.yaml b/config/packages/twig.yaml index d9e743a19d..9b716604ad 100644 --- a/config/packages/twig.yaml +++ b/config/packages/twig.yaml @@ -9,9 +9,6 @@ services: autowire: true autoconfigure: true - Twig\Extra\Intl\IntlExtension: ~ - Twig\Extra\String\StringExtension: ~ - when@test_cached: twig: strict_variables: true diff --git a/config/packages/workflow.yaml b/config/packages/workflow.yaml index 855df59cda..2a716ff0a1 100644 --- a/config/packages/workflow.yaml +++ b/config/packages/workflow.yaml @@ -1,2 +1,2 @@ framework: - workflows: null + workflows: ~ diff --git a/config/routes/dev/web_profiler.yaml b/config/routes/dev/web_profiler.yaml deleted file mode 100644 index 3e79dc212d..0000000000 --- a/config/routes/dev/web_profiler.yaml +++ /dev/null @@ -1,7 +0,0 @@ -_wdt: - resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml" - prefix: /_wdt - -_profiler: - resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml" - prefix: /_profiler diff --git a/config/routes/sylius_test_plugin.yaml b/config/routes/sylius_test_plugin.yaml new file mode 100644 index 0000000000..b05a101673 --- /dev/null +++ b/config/routes/sylius_test_plugin.yaml @@ -0,0 +1,8 @@ +when@test: &plugin_test + sylius_test_plugin_main: + path: /test/main + controller: Symfony\Bundle\FrameworkBundle\Controller\TemplateController::templateAction + defaults: + template: "@SyliusTestPlugin/main.html.twig" + +when@test_cached: *plugin_test diff --git a/config/routes/test/sylius_test_plugin.yaml b/config/routes/test/sylius_test_plugin.yaml deleted file mode 100644 index 6a6bd07275..0000000000 --- a/config/routes/test/sylius_test_plugin.yaml +++ /dev/null @@ -1,5 +0,0 @@ -sylius_test_plugin_main: - path: /test/main - controller: Symfony\Bundle\FrameworkBundle\Controller\TemplateController::templateAction - defaults: - template: "@SyliusTestPlugin/main.html.twig" diff --git a/config/routes/test_cached/sylius_test_plugin.yaml b/config/routes/test_cached/sylius_test_plugin.yaml deleted file mode 100644 index 6a6bd07275..0000000000 --- a/config/routes/test_cached/sylius_test_plugin.yaml +++ /dev/null @@ -1,5 +0,0 @@ -sylius_test_plugin_main: - path: /test/main - controller: Symfony\Bundle\FrameworkBundle\Controller\TemplateController::templateAction - defaults: - template: "@SyliusTestPlugin/main.html.twig" diff --git a/config/routes/web_profiler.yaml b/config/routes/web_profiler.yaml index 8d85319fd8..e15ab243a3 100644 --- a/config/routes/web_profiler.yaml +++ b/config/routes/web_profiler.yaml @@ -1,8 +1,8 @@ when@dev: - web_profiler_wdt: - resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml' - prefix: /_wdt - - web_profiler_profiler: - resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml' - prefix: /_profiler + _wdt: + resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml" + prefix: /_wdt + + _profiler: + resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml" + prefix: /_profiler diff --git a/symfony.lock b/symfony.lock index d88ac6c48a..ab52c48a79 100644 --- a/symfony.lock +++ b/symfony.lock @@ -73,13 +73,7 @@ "branch": "main", "version": "2.0", "ref": "1e012e04f573524ca83795cd19df9ea690adb604" - }, - "files": [ - "behat.yml.dist", - "config/services_test.yaml", - "features/demo.feature", - "tests/Behat/DemoContext.php" - ] + } }, "friendsofsymfony/rest-bundle": { "version": "3.7", @@ -88,10 +82,7 @@ "branch": "main", "version": "3.0", "ref": "3762cc4e4f2d6faabeca5a151b41c8c791bd96e5" - }, - "files": [ - "config/packages/fos_rest.yaml" - ] + } }, "jms/serializer-bundle": { "version": "5.4", @@ -100,10 +91,7 @@ "branch": "main", "version": "4.0", "ref": "cc04e10cf7171525b50c18b36004edf64cb478be" - }, - "files": [ - "config/packages/jms_serializer.yaml" - ] + } }, "knplabs/knp-gaufrette-bundle": { "version": "v0.9.0" @@ -143,11 +131,7 @@ "branch": "main", "version": "1.8", "ref": "d1227d002b70d1a1f941d91845fcd7ac7fbfc929" - }, - "files": [ - "config/packages/liip_imagine.yaml", - "config/routes/liip_imagine.yaml" - ] + } }, "nelmio/alice": { "version": "3.13", @@ -180,10 +164,7 @@ "branch": "main", "version": "2.4", "ref": "518ac22defa04a8a1d82479ed362e2921487adf0" - }, - "files": [ - "config/packages/payum.yaml" - ] + } }, "php-http/discovery": { "version": "1.20", @@ -204,10 +185,7 @@ "branch": "main", "version": "1.0", "ref": "5e490cc197fb6bb1ae22e5abbc531ddc633b6767" - }, - "files": [ - "phpstan.dist.neon" - ] + } }, "phpunit/phpunit": { "version": "10.5", @@ -257,10 +235,7 @@ "branch": "main", "version": "1.2", "ref": "e805aba9eff5372e2d149a9ff56566769e22819d" - }, - "files": [ - "config/packages/stof_doctrine_extensions.yaml" - ] + } }, "sylius-labs/doctrine-migrations-extra-bundle": { "version": "v0.2.2" @@ -281,11 +256,7 @@ "branch": "main", "version": "1.9", "ref": "ee21c1fc90778f4b01c20e72c320cc34f8839c1e" - }, - "files": [ - "config/packages/sylius_resource.yaml", - "config/routes/sylius_resource.yaml" - ] + } }, "sylius/sylius": { "version": "2.0",