From 825cf1793363776a685266cb290269806034b9e7 Mon Sep 17 00:00:00 2001 From: "github-action[bot]" <> Date: Wed, 16 Feb 2022 10:05:14 +0000 Subject: [PATCH] Update Flex endpoint --- ...abf77a390fe5a12a589d74d8f2a31f60ad013.json | 136 ++++++++++++++++++ ...dd8249dd55bbda16fa7a45bb7499ef6f8e90e.json | 130 +++++++++++++++++ ...e4f2b9d7f436d7d52e8369230b393367607ec.json | 45 ++++++ ...52d2065dc3fde27912d502c18ca1926e35ae2.json | 41 ++++++ ...cfd98f714894c4f128bb99aa2530c1227603c.json | 36 +++++ ...bc3d84ef2f427f82104f766014e799eefcc3e.json | 58 ++++++++ ...cdd918703a7fcfc3ef91723a2eac42a0f7690.json | 42 ++++++ doctrine.doctrine-bundle.2.3.json | 4 +- doctrine.doctrine-bundle.2.4.json | 4 +- hautelook.alice-bundle.2.2.json | 45 ++++++ index.json | 15 +- nelmio.alice.3.3.json | 41 ++++++ symfony.validator.5.3.json | 36 +++++ symfony.web-profiler-bundle.5.3.json | 58 ++++++++ zenstruck.foundry.1.10.json | 42 ++++++ 15 files changed, 724 insertions(+), 9 deletions(-) create mode 100644 archived/doctrine.doctrine-bundle/52eabf77a390fe5a12a589d74d8f2a31f60ad013.json create mode 100644 archived/doctrine.doctrine-bundle/ddddd8249dd55bbda16fa7a45bb7499ef6f8e90e.json create mode 100644 archived/hautelook.alice-bundle/c84e4f2b9d7f436d7d52e8369230b393367607ec.json create mode 100644 archived/nelmio.alice/42b52d2065dc3fde27912d502c18ca1926e35ae2.json create mode 100644 archived/symfony.validator/c32cfd98f714894c4f128bb99aa2530c1227603c.json create mode 100644 archived/symfony.web-profiler-bundle/24bbc3d84ef2f427f82104f766014e799eefcc3e.json create mode 100644 archived/zenstruck.foundry/934cdd918703a7fcfc3ef91723a2eac42a0f7690.json create mode 100644 hautelook.alice-bundle.2.2.json create mode 100644 nelmio.alice.3.3.json create mode 100644 symfony.validator.5.3.json create mode 100644 symfony.web-profiler-bundle.5.3.json create mode 100644 zenstruck.foundry.1.10.json diff --git a/archived/doctrine.doctrine-bundle/52eabf77a390fe5a12a589d74d8f2a31f60ad013.json b/archived/doctrine.doctrine-bundle/52eabf77a390fe5a12a589d74d8f2a31f60ad013.json new file mode 100644 index 00000000..e9b4d823 --- /dev/null +++ b/archived/doctrine.doctrine-bundle/52eabf77a390fe5a12a589d74d8f2a31f60ad013.json @@ -0,0 +1,136 @@ +{ + "manifests": { + "doctrine/doctrine-bundle": { + "manifest": { + "bundles": { + "Doctrine\\Bundle\\DoctrineBundle\\DoctrineBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + }, + "env": { + "#1": "Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url", + "#2": "IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml", + "#3": "", + "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", + "#5": "DATABASE_URL=\"mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7&charset=utf8mb4\"", + "DATABASE_URL": "postgresql://db_user:db_password@127.0.0.1:5432/db_name?serverVersion=13&charset=utf8" + }, + "dockerfile": [ + "RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev; \\", + "\tdocker-php-ext-install -j$(nproc) pdo_pgsql; \\", + "\tapk add --no-cache --virtual .pgsql-rundeps so:libpq.so.5; \\", + "\tapk del .pgsql-deps" + ], + "docker-compose": { + "docker-compose.yml": { + "services": [ + "database:", + " image: postgres:${POSTGRES_VERSION:-13}-alpine", + " environment:", + " POSTGRES_DB: ${POSTGRES_DB:-app}", + " # You should definitely change the password in production", + " POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-ChangeMe}", + " POSTGRES_USER: ${POSTGRES_USER:-symfony}", + " volumes:", + " - db-data:/var/lib/postgresql/data:rw", + " # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!", + " # - ./docker/db/data:/var/lib/postgresql/data:rw" + ], + "volumes": [ + "db-data:" + ] + }, + "docker-compose.override.yml": { + "services": [ + "database:", + " ports:", + " - \"5432\"" + ] + } + }, + "post-install-output": [ + " * Modify your DATABASE_URL config in .env", + "", + " * Configure the driver (postgresql) and", + " server_version (13) in config/packages/doctrine.yaml" + ] + }, + "files": { + "config/packages/doctrine.yaml": { + "contents": [ + "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: '13'", + " orm:", + " auto_generate_proxy_classes: true", + " naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware", + " auto_mapping: true", + " mappings:", + " App:", + " is_bundle: false", + " type: annotation", + " dir: '%kernel.project_dir%/src/Entity'", + " prefix: 'App\\Entity'", + " alias: App", + "" + ], + "executable": false + }, + "config/packages/prod/doctrine.yaml": { + "contents": [ + "doctrine:", + " orm:", + " auto_generate_proxy_classes: false", + " 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", + "" + ], + "executable": false + }, + "config/packages/test/doctrine.yaml": { + "contents": [ + "doctrine:", + " dbal:", + " # \"TEST_TOKEN\" is typically set by ParaTest", + " dbname: 'main_test%env(default::TEST_TOKEN)%'", + "" + ], + "executable": false + }, + "src/Entity/.gitignore": { + "contents": [ + "" + ], + "executable": false + }, + "src/Repository/.gitignore": { + "contents": [ + "" + ], + "executable": false + } + }, + "ref": "52eabf77a390fe5a12a589d74d8f2a31f60ad013" + } + } +} diff --git a/archived/doctrine.doctrine-bundle/ddddd8249dd55bbda16fa7a45bb7499ef6f8e90e.json b/archived/doctrine.doctrine-bundle/ddddd8249dd55bbda16fa7a45bb7499ef6f8e90e.json new file mode 100644 index 00000000..ba29d366 --- /dev/null +++ b/archived/doctrine.doctrine-bundle/ddddd8249dd55bbda16fa7a45bb7499ef6f8e90e.json @@ -0,0 +1,130 @@ +{ + "manifests": { + "doctrine/doctrine-bundle": { + "manifest": { + "bundles": { + "Doctrine\\Bundle\\DoctrineBundle\\DoctrineBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + }, + "env": { + "#1": "Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url", + "#2": "IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml", + "#3": "", + "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", + "#5": "DATABASE_URL=\"mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7&charset=utf8mb4\"", + "DATABASE_URL": "postgresql://symfony:ChangeMe@127.0.0.1:5432/app?serverVersion=13&charset=utf8" + }, + "dockerfile": [ + "RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev; \\", + "\tdocker-php-ext-install -j$(nproc) pdo_pgsql; \\", + "\tapk add --no-cache --virtual .pgsql-rundeps so:libpq.so.5; \\", + "\tapk del .pgsql-deps" + ], + "docker-compose": { + "docker-compose.yml": { + "services": [ + "database:", + " image: postgres:${POSTGRES_VERSION:-13}-alpine", + " environment:", + " POSTGRES_DB: ${POSTGRES_DB:-app}", + " # You should definitely change the password in production", + " POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-ChangeMe}", + " POSTGRES_USER: ${POSTGRES_USER:-symfony}", + " volumes:", + " - db-data:/var/lib/postgresql/data:rw", + " # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!", + " # - ./docker/db/data:/var/lib/postgresql/data:rw" + ], + "volumes": [ + "db-data:" + ] + }, + "docker-compose.override.yml": { + "services": [ + "database:", + " ports:", + " - \"5432\"" + ] + } + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + }, + "post-install-output": [ + " * Modify your DATABASE_URL config in .env", + "", + " * Configure the driver (postgresql) and", + " server_version (13) in config/packages/doctrine.yaml" + ] + }, + "files": { + "config/packages/doctrine.yaml": { + "contents": [ + "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: '13'", + " orm:", + " auto_generate_proxy_classes: true", + " naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware", + " auto_mapping: true", + " mappings:", + " App:", + " is_bundle: false", + " dir: '%kernel.project_dir%/src/Entity'", + " prefix: 'App\\Entity'", + " alias: App", + "", + "when@test:", + " doctrine:", + " dbal:", + " # \"TEST_TOKEN\" is typically set by ParaTest", + " dbname_suffix: '_test%env(default::TEST_TOKEN)%'", + "", + "when@prod:", + " doctrine:", + " orm:", + " auto_generate_proxy_classes: false", + " 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", + "" + ], + "executable": false + }, + "src/Entity/.gitignore": { + "contents": [ + "" + ], + "executable": false + }, + "src/Repository/.gitignore": { + "contents": [ + "" + ], + "executable": false + } + }, + "ref": "ddddd8249dd55bbda16fa7a45bb7499ef6f8e90e" + } + } +} diff --git a/archived/hautelook.alice-bundle/c84e4f2b9d7f436d7d52e8369230b393367607ec.json b/archived/hautelook.alice-bundle/c84e4f2b9d7f436d7d52e8369230b393367607ec.json new file mode 100644 index 00000000..6119284e --- /dev/null +++ b/archived/hautelook.alice-bundle/c84e4f2b9d7f436d7d52e8369230b393367607ec.json @@ -0,0 +1,45 @@ +{ + "manifests": { + "hautelook/alice-bundle": { + "manifest": { + "bundles": { + "Hautelook\\AliceBundle\\HautelookAliceBundle": [ + "dev", + "test" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "fixtures/": "fixtures/" + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + }, + "post-install-output": [ + " * Write fixtures files in the fixtures/ folder", + " * Run php bin/console hautelook:fixtures:load" + ] + }, + "files": { + "config/packages/hautelook_alice.yaml": { + "contents": [ + "when@dev: &dev", + " hautelook_alice:", + " fixtures_path: fixtures", + "", + "when@test: *dev", + "" + ], + "executable": false + }, + "fixtures/.gitignore": { + "contents": [ + "" + ], + "executable": false + } + }, + "ref": "c84e4f2b9d7f436d7d52e8369230b393367607ec" + } + } +} diff --git a/archived/nelmio.alice/42b52d2065dc3fde27912d502c18ca1926e35ae2.json b/archived/nelmio.alice/42b52d2065dc3fde27912d502c18ca1926e35ae2.json new file mode 100644 index 00000000..98a41eff --- /dev/null +++ b/archived/nelmio.alice/42b52d2065dc3fde27912d502c18ca1926e35ae2.json @@ -0,0 +1,41 @@ +{ + "manifests": { + "nelmio/alice": { + "manifest": { + "bundles": { + "Nelmio\\Alice\\Bridge\\Symfony\\NelmioAliceBundle": [ + "dev", + "test" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + } + }, + "files": { + "config/packages/nelmio_alice.yaml": { + "contents": [ + "when@dev: &dev", + " nelmio_alice:", + " functions_blacklist:", + " - 'current'", + " - 'shuffle'", + " - 'date'", + " - 'time'", + " - 'file'", + " - 'md5'", + " - 'sha1'", + "", + "when@test: *dev", + "" + ], + "executable": false + } + }, + "ref": "42b52d2065dc3fde27912d502c18ca1926e35ae2" + } + } +} diff --git a/archived/symfony.validator/c32cfd98f714894c4f128bb99aa2530c1227603c.json b/archived/symfony.validator/c32cfd98f714894c4f128bb99aa2530c1227603c.json new file mode 100644 index 00000000..49d1dcc5 --- /dev/null +++ b/archived/symfony.validator/c32cfd98f714894c4f128bb99aa2530c1227603c.json @@ -0,0 +1,36 @@ +{ + "manifests": { + "symfony/validator": { + "manifest": { + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + } + }, + "files": { + "config/packages/validator.yaml": { + "contents": [ + "framework:", + " validation:", + " email_validation_mode: html5", + "", + " # Enables validator auto-mapping support.", + " # For instance, basic validation constraints will be inferred from Doctrine's metadata.", + " #auto_mapping:", + " # App\\Entity\\: []", + "", + "when@test:", + " framework:", + " validation:", + " not_compromised_password: false", + "" + ], + "executable": false + } + }, + "ref": "c32cfd98f714894c4f128bb99aa2530c1227603c" + } + } +} diff --git a/archived/symfony.web-profiler-bundle/24bbc3d84ef2f427f82104f766014e799eefcc3e.json b/archived/symfony.web-profiler-bundle/24bbc3d84ef2f427f82104f766014e799eefcc3e.json new file mode 100644 index 00000000..c2cc46ff --- /dev/null +++ b/archived/symfony.web-profiler-bundle/24bbc3d84ef2f427f82104f766014e799eefcc3e.json @@ -0,0 +1,58 @@ +{ + "manifests": { + "symfony/web-profiler-bundle": { + "manifest": { + "bundles": { + "Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle": [ + "dev", + "test" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + } + }, + "files": { + "config/packages/web_profiler.yaml": { + "contents": [ + "when@dev:", + " web_profiler:", + " toolbar: true", + " intercept_redirects: false", + "", + " framework:", + " profiler: { only_exceptions: false }", + "", + "when@test:", + " web_profiler:", + " toolbar: false", + " intercept_redirects: false", + "", + " framework:", + " profiler: { collect: false }", + "" + ], + "executable": false + }, + "config/routes/web_profiler.yaml": { + "contents": [ + "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", + "" + ], + "executable": false + } + }, + "ref": "24bbc3d84ef2f427f82104f766014e799eefcc3e" + } + } +} diff --git a/archived/zenstruck.foundry/934cdd918703a7fcfc3ef91723a2eac42a0f7690.json b/archived/zenstruck.foundry/934cdd918703a7fcfc3ef91723a2eac42a0f7690.json new file mode 100644 index 00000000..fbc23883 --- /dev/null +++ b/archived/zenstruck.foundry/934cdd918703a7fcfc3ef91723a2eac42a0f7690.json @@ -0,0 +1,42 @@ +{ + "manifests": { + "zenstruck/foundry": { + "manifest": { + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "bundles": { + "Zenstruck\\Foundry\\ZenstruckFoundryBundle": [ + "dev", + "test" + ] + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + }, + "post-install-output": [ + " * You're ready to use zenstruck/foundry. Create your first factory with", + " bin/console make:factory.", + "", + " * Read the documentation at https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html" + ] + }, + "files": { + "config/packages/zenstruck_foundry.yaml": { + "contents": [ + "when@dev: &dev", + " # See full configuration: https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#full-default-bundle-configuration", + " zenstruck_foundry:", + " # Whether to auto-refresh proxies by default (https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#auto-refresh)", + " auto_refresh_proxies: true", + "", + "when@test: *dev", + "" + ], + "executable": false + } + }, + "ref": "934cdd918703a7fcfc3ef91723a2eac42a0f7690" + } + } +} diff --git a/doctrine.doctrine-bundle.2.3.json b/doctrine.doctrine-bundle.2.3.json index 40e988bf..e9b4d823 100644 --- a/doctrine.doctrine-bundle.2.3.json +++ b/doctrine.doctrine-bundle.2.3.json @@ -16,7 +16,7 @@ "#2": "IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml", "#3": "", "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", - "#5": "DATABASE_URL=\"mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7\"", + "#5": "DATABASE_URL=\"mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7&charset=utf8mb4\"", "DATABASE_URL": "postgresql://db_user:db_password@127.0.0.1:5432/db_name?serverVersion=13&charset=utf8" }, "dockerfile": [ @@ -130,7 +130,7 @@ "executable": false } }, - "ref": "4f5eb542f01475cc2eb49624e2f1a3ea458e73bf" + "ref": "52eabf77a390fe5a12a589d74d8f2a31f60ad013" } } } diff --git a/doctrine.doctrine-bundle.2.4.json b/doctrine.doctrine-bundle.2.4.json index ba43691a..ba29d366 100644 --- a/doctrine.doctrine-bundle.2.4.json +++ b/doctrine.doctrine-bundle.2.4.json @@ -16,7 +16,7 @@ "#2": "IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml", "#3": "", "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", - "#5": "DATABASE_URL=\"mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7\"", + "#5": "DATABASE_URL=\"mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7&charset=utf8mb4\"", "DATABASE_URL": "postgresql://symfony:ChangeMe@127.0.0.1:5432/app?serverVersion=13&charset=utf8" }, "dockerfile": [ @@ -124,7 +124,7 @@ "executable": false } }, - "ref": "c2f0222df1e65fd8bf4c627caee03ac5c0a0d047" + "ref": "ddddd8249dd55bbda16fa7a45bb7499ef6f8e90e" } } } diff --git a/hautelook.alice-bundle.2.2.json b/hautelook.alice-bundle.2.2.json new file mode 100644 index 00000000..6119284e --- /dev/null +++ b/hautelook.alice-bundle.2.2.json @@ -0,0 +1,45 @@ +{ + "manifests": { + "hautelook/alice-bundle": { + "manifest": { + "bundles": { + "Hautelook\\AliceBundle\\HautelookAliceBundle": [ + "dev", + "test" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "fixtures/": "fixtures/" + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + }, + "post-install-output": [ + " * Write fixtures files in the fixtures/ folder", + " * Run php bin/console hautelook:fixtures:load" + ] + }, + "files": { + "config/packages/hautelook_alice.yaml": { + "contents": [ + "when@dev: &dev", + " hautelook_alice:", + " fixtures_path: fixtures", + "", + "when@test: *dev", + "" + ], + "executable": false + }, + "fixtures/.gitignore": { + "contents": [ + "" + ], + "executable": false + } + }, + "ref": "c84e4f2b9d7f436d7d52e8369230b393367607ec" + } + } +} diff --git a/index.json b/index.json index b718a46b..a175a7e6 100644 --- a/index.json +++ b/index.json @@ -404,7 +404,8 @@ "3.0" ], "hautelook/alice-bundle": [ - "2.1" + "2.1", + "2.2" ], "javiereguiluz/easyadmin-bundle": [ "1.16", @@ -415,7 +416,8 @@ "2.5" ], "nelmio/alice": [ - "3.2" + "3.2", + "3.3" ], "nelmio/cors-bundle": [ "1.5" @@ -707,10 +709,12 @@ ], "symfony/validator": [ "4.1", - "4.3" + "4.3", + "5.3" ], "symfony/web-profiler-bundle": [ - "3.3" + "3.3", + "5.3" ], "symfony/web-server-bundle": [ "3.3" @@ -754,7 +758,8 @@ "2.0" ], "zenstruck/foundry": [ - "1.9" + "1.9", + "1.10" ] }, "versions": { diff --git a/nelmio.alice.3.3.json b/nelmio.alice.3.3.json new file mode 100644 index 00000000..98a41eff --- /dev/null +++ b/nelmio.alice.3.3.json @@ -0,0 +1,41 @@ +{ + "manifests": { + "nelmio/alice": { + "manifest": { + "bundles": { + "Nelmio\\Alice\\Bridge\\Symfony\\NelmioAliceBundle": [ + "dev", + "test" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + } + }, + "files": { + "config/packages/nelmio_alice.yaml": { + "contents": [ + "when@dev: &dev", + " nelmio_alice:", + " functions_blacklist:", + " - 'current'", + " - 'shuffle'", + " - 'date'", + " - 'time'", + " - 'file'", + " - 'md5'", + " - 'sha1'", + "", + "when@test: *dev", + "" + ], + "executable": false + } + }, + "ref": "42b52d2065dc3fde27912d502c18ca1926e35ae2" + } + } +} diff --git a/symfony.validator.5.3.json b/symfony.validator.5.3.json new file mode 100644 index 00000000..49d1dcc5 --- /dev/null +++ b/symfony.validator.5.3.json @@ -0,0 +1,36 @@ +{ + "manifests": { + "symfony/validator": { + "manifest": { + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + } + }, + "files": { + "config/packages/validator.yaml": { + "contents": [ + "framework:", + " validation:", + " email_validation_mode: html5", + "", + " # Enables validator auto-mapping support.", + " # For instance, basic validation constraints will be inferred from Doctrine's metadata.", + " #auto_mapping:", + " # App\\Entity\\: []", + "", + "when@test:", + " framework:", + " validation:", + " not_compromised_password: false", + "" + ], + "executable": false + } + }, + "ref": "c32cfd98f714894c4f128bb99aa2530c1227603c" + } + } +} diff --git a/symfony.web-profiler-bundle.5.3.json b/symfony.web-profiler-bundle.5.3.json new file mode 100644 index 00000000..c2cc46ff --- /dev/null +++ b/symfony.web-profiler-bundle.5.3.json @@ -0,0 +1,58 @@ +{ + "manifests": { + "symfony/web-profiler-bundle": { + "manifest": { + "bundles": { + "Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle": [ + "dev", + "test" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + } + }, + "files": { + "config/packages/web_profiler.yaml": { + "contents": [ + "when@dev:", + " web_profiler:", + " toolbar: true", + " intercept_redirects: false", + "", + " framework:", + " profiler: { only_exceptions: false }", + "", + "when@test:", + " web_profiler:", + " toolbar: false", + " intercept_redirects: false", + "", + " framework:", + " profiler: { collect: false }", + "" + ], + "executable": false + }, + "config/routes/web_profiler.yaml": { + "contents": [ + "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", + "" + ], + "executable": false + } + }, + "ref": "24bbc3d84ef2f427f82104f766014e799eefcc3e" + } + } +} diff --git a/zenstruck.foundry.1.10.json b/zenstruck.foundry.1.10.json new file mode 100644 index 00000000..fbc23883 --- /dev/null +++ b/zenstruck.foundry.1.10.json @@ -0,0 +1,42 @@ +{ + "manifests": { + "zenstruck/foundry": { + "manifest": { + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "bundles": { + "Zenstruck\\Foundry\\ZenstruckFoundryBundle": [ + "dev", + "test" + ] + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + }, + "post-install-output": [ + " * You're ready to use zenstruck/foundry. Create your first factory with", + " bin/console make:factory.", + "", + " * Read the documentation at https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html" + ] + }, + "files": { + "config/packages/zenstruck_foundry.yaml": { + "contents": [ + "when@dev: &dev", + " # See full configuration: https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#full-default-bundle-configuration", + " zenstruck_foundry:", + " # Whether to auto-refresh proxies by default (https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#auto-refresh)", + " auto_refresh_proxies: true", + "", + "when@test: *dev", + "" + ], + "executable": false + } + }, + "ref": "934cdd918703a7fcfc3ef91723a2eac42a0f7690" + } + } +}