mirror of
https://github.com/symfony/recipes.git
synced 2026-09-18 18:46:40 +03:00
Update Flex endpoint
This commit is contained in:
@@ -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 <fg=green>.env</>",
|
||||
"",
|
||||
" * Configure the <fg=green>driver</> (postgresql) and",
|
||||
" <fg=green>server_version</> (13) in <fg=green>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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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 <fg=green>.env</>",
|
||||
"",
|
||||
" * Configure the <fg=green>driver</> (postgresql) and",
|
||||
" <fg=green>server_version</> (13) in <fg=green>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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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": [
|
||||
" * <fg=blue>Write</> fixtures files in the <comment>fixtures/</> folder",
|
||||
" * <fg=blue>Run</> <comment>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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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",
|
||||
" <info>bin/console make:factory</>.",
|
||||
"",
|
||||
" * <fg=blue>Read</> the documentation at <comment>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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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": [
|
||||
" * <fg=blue>Write</> fixtures files in the <comment>fixtures/</> folder",
|
||||
" * <fg=blue>Run</> <comment>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"
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
-5
@@ -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": {
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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",
|
||||
" <info>bin/console make:factory</>.",
|
||||
"",
|
||||
" * <fg=blue>Read</> the documentation at <comment>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"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user