diff --git a/hautelook/alice-bundle/2.2/config/packages/hautelook_alice.yaml b/hautelook/alice-bundle/2.2/config/packages/hautelook_alice.yaml new file mode 100644 index 00000000..6e6d2fe1 --- /dev/null +++ b/hautelook/alice-bundle/2.2/config/packages/hautelook_alice.yaml @@ -0,0 +1,5 @@ +when@dev: &dev + hautelook_alice: + fixtures_path: fixtures + +when@test: *dev diff --git a/hautelook/alice-bundle/2.2/fixtures/.gitignore b/hautelook/alice-bundle/2.2/fixtures/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/hautelook/alice-bundle/2.2/manifest.json b/hautelook/alice-bundle/2.2/manifest.json new file mode 100644 index 00000000..cead90b8 --- /dev/null +++ b/hautelook/alice-bundle/2.2/manifest.json @@ -0,0 +1,13 @@ +{ + "aliases": ["alice"], + "bundles": { + "Hautelook\\AliceBundle\\HautelookAliceBundle": ["dev", "test"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "fixtures/": "fixtures/" + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + } +} diff --git a/hautelook/alice-bundle/2.2/post-install.txt b/hautelook/alice-bundle/2.2/post-install.txt new file mode 100644 index 00000000..f537f883 --- /dev/null +++ b/hautelook/alice-bundle/2.2/post-install.txt @@ -0,0 +1,2 @@ + * Write fixtures files in the fixtures/ folder + * Run php bin/console hautelook:fixtures:load diff --git a/nelmio/alice/3.3/config/packages/nelmio_alice.yaml b/nelmio/alice/3.3/config/packages/nelmio_alice.yaml new file mode 100644 index 00000000..e82c3298 --- /dev/null +++ b/nelmio/alice/3.3/config/packages/nelmio_alice.yaml @@ -0,0 +1,12 @@ +when@dev: &dev + nelmio_alice: + functions_blacklist: + - 'current' + - 'shuffle' + - 'date' + - 'time' + - 'file' + - 'md5' + - 'sha1' + +when@test: *dev diff --git a/nelmio/alice/3.3/manifest.json b/nelmio/alice/3.3/manifest.json new file mode 100644 index 00000000..1d36be41 --- /dev/null +++ b/nelmio/alice/3.3/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Nelmio\\Alice\\Bridge\\Symfony\\NelmioAliceBundle": ["dev", "test"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + } +} diff --git a/symfony/validator/5.3/config/packages/validator.yaml b/symfony/validator/5.3/config/packages/validator.yaml new file mode 100644 index 00000000..0201281d --- /dev/null +++ b/symfony/validator/5.3/config/packages/validator.yaml @@ -0,0 +1,13 @@ +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 diff --git a/symfony/validator/5.3/manifest.json b/symfony/validator/5.3/manifest.json new file mode 100644 index 00000000..84521dba --- /dev/null +++ b/symfony/validator/5.3/manifest.json @@ -0,0 +1,9 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "aliases": ["validation"], + "conflict": { + "symfony/framework-bundle": "<5.3" + } +} diff --git a/symfony/web-profiler-bundle/5.3/config/packages/web_profiler.yaml b/symfony/web-profiler-bundle/5.3/config/packages/web_profiler.yaml new file mode 100644 index 00000000..17893da1 --- /dev/null +++ b/symfony/web-profiler-bundle/5.3/config/packages/web_profiler.yaml @@ -0,0 +1,15 @@ +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 } diff --git a/symfony/web-profiler-bundle/5.3/config/routes/web_profiler.yaml b/symfony/web-profiler-bundle/5.3/config/routes/web_profiler.yaml new file mode 100644 index 00000000..8d85319f --- /dev/null +++ b/symfony/web-profiler-bundle/5.3/config/routes/web_profiler.yaml @@ -0,0 +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 diff --git a/symfony/web-profiler-bundle/5.3/manifest.json b/symfony/web-profiler-bundle/5.3/manifest.json new file mode 100644 index 00000000..be741281 --- /dev/null +++ b/symfony/web-profiler-bundle/5.3/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle": ["dev", "test"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + } +} diff --git a/zenstruck/foundry/1.10/config/packages/zenstruck_foundry.yaml b/zenstruck/foundry/1.10/config/packages/zenstruck_foundry.yaml new file mode 100644 index 00000000..0657d2c3 --- /dev/null +++ b/zenstruck/foundry/1.10/config/packages/zenstruck_foundry.yaml @@ -0,0 +1,7 @@ +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 diff --git a/zenstruck/foundry/1.10/manifest.json b/zenstruck/foundry/1.10/manifest.json new file mode 100644 index 00000000..b9b6fd38 --- /dev/null +++ b/zenstruck/foundry/1.10/manifest.json @@ -0,0 +1,11 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "bundles": { + "Zenstruck\\Foundry\\ZenstruckFoundryBundle": ["dev", "test"] + }, + "conflict": { + "symfony/framework-bundle": "<5.3" + } +} diff --git a/zenstruck/foundry/1.10/post-install.txt b/zenstruck/foundry/1.10/post-install.txt new file mode 100644 index 00000000..456b63d0 --- /dev/null +++ b/zenstruck/foundry/1.10/post-install.txt @@ -0,0 +1,4 @@ + * 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