From efe5b9ad1efb87563277d53684711bfaa7b0e14f Mon Sep 17 00:00:00 2001 From: "github-action[bot]" <> Date: Thu, 18 Jan 2024 08:47:37 +0000 Subject: [PATCH] Update Flex endpoint --- ...12b59a228240cb9627eea59890edf05f2040c.json | 136 ++++++++++++++++ ...046a1fdd1a58fcca48d8bf2f58c45a93b1d00.json | 131 ++++++++++++++++ ...a02a22033e35640468f48ff6bf31a25891537.json | 137 ++++++++++++++++ ...cd806dc647513ad379f7ffeb9555d0cb1cfb0.json | 129 ++++++++++++++++ ...95ada6b987f9c35734cb9bb0ef0fd270ca316.json | 146 ++++++++++++++++++ ...daaaa98aa09fcfc2016ff25e42b6992daf8d9.json | 135 ++++++++++++++++ ...ef874d696cf6db4591c446d011221c94194cb.json | 137 ++++++++++++++++ ...1c7a146ca3f321bdc67bf46bfee35befbe08a.json | 132 ++++++++++++++++ doctrine.doctrine-bundle.1.12.json | 10 +- doctrine.doctrine-bundle.1.6.json | 10 +- doctrine.doctrine-bundle.2.0.json | 10 +- doctrine.doctrine-bundle.2.10.json | 10 +- doctrine.doctrine-bundle.2.3.json | 10 +- doctrine.doctrine-bundle.2.4.json | 10 +- doctrine.doctrine-bundle.2.8.json | 10 +- doctrine.doctrine-bundle.2.9.json | 10 +- 16 files changed, 1123 insertions(+), 40 deletions(-) create mode 100644 archived/doctrine.doctrine-bundle/13f12b59a228240cb9627eea59890edf05f2040c.json create mode 100644 archived/doctrine.doctrine-bundle/191046a1fdd1a58fcca48d8bf2f58c45a93b1d00.json create mode 100644 archived/doctrine.doctrine-bundle/310a02a22033e35640468f48ff6bf31a25891537.json create mode 100644 archived/doctrine.doctrine-bundle/4bccd806dc647513ad379f7ffeb9555d0cb1cfb0.json create mode 100644 archived/doctrine.doctrine-bundle/4c795ada6b987f9c35734cb9bb0ef0fd270ca316.json create mode 100644 archived/doctrine.doctrine-bundle/d37daaaa98aa09fcfc2016ff25e42b6992daf8d9.json create mode 100644 archived/doctrine.doctrine-bundle/ddaef874d696cf6db4591c446d011221c94194cb.json create mode 100644 archived/doctrine.doctrine-bundle/f3c1c7a146ca3f321bdc67bf46bfee35befbe08a.json diff --git a/archived/doctrine.doctrine-bundle/13f12b59a228240cb9627eea59890edf05f2040c.json b/archived/doctrine.doctrine-bundle/13f12b59a228240cb9627eea59890edf05f2040c.json new file mode 100644 index 00000000..ab68f037 --- /dev/null +++ b/archived/doctrine.doctrine-bundle/13f12b59a228240cb9627eea59890edf05f2040c.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://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8&charset=utf8mb4\"", + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&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:-16}-alpine", + " environment:", + " POSTGRES_DB: ${POSTGRES_DB:-app}", + " # You should definitely change the password in production", + " POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}", + " POSTGRES_USER: ${POSTGRES_USER:-app}", + " volumes:", + " - database_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": [ + "database_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 (16) 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: '16'", + " 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": "13f12b59a228240cb9627eea59890edf05f2040c" + } + } +} diff --git a/archived/doctrine.doctrine-bundle/191046a1fdd1a58fcca48d8bf2f58c45a93b1d00.json b/archived/doctrine.doctrine-bundle/191046a1fdd1a58fcca48d8bf2f58c45a93b1d00.json new file mode 100644 index 00000000..b1719e33 --- /dev/null +++ b/archived/doctrine.doctrine-bundle/191046a1fdd1a58fcca48d8bf2f58c45a93b1d00.json @@ -0,0 +1,131 @@ +{ + "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://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8&charset=utf8mb4\"", + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&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:-16}-alpine", + " environment:", + " POSTGRES_DB: ${POSTGRES_DB:-app}", + " # You should definitely change the password in production", + " POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}", + " POSTGRES_USER: ${POSTGRES_USER:-app}", + " volumes:", + " - database_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": [ + "database_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 (16) 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: '16'", + " 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", + " 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", + "" + ], + "executable": false + }, + "src/Entity/.gitignore": { + "contents": [ + "" + ], + "executable": false + }, + "src/Repository/.gitignore": { + "contents": [ + "" + ], + "executable": false + } + }, + "ref": "191046a1fdd1a58fcca48d8bf2f58c45a93b1d00" + } + } +} diff --git a/archived/doctrine.doctrine-bundle/310a02a22033e35640468f48ff6bf31a25891537.json b/archived/doctrine.doctrine-bundle/310a02a22033e35640468f48ff6bf31a25891537.json new file mode 100644 index 00000000..b7ead3f1 --- /dev/null +++ b/archived/doctrine.doctrine-bundle/310a02a22033e35640468f48ff6bf31a25891537.json @@ -0,0 +1,137 @@ +{ + "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://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4\"", + "#6": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4\"", + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8" + }, + "dockerfile": [ + "RUN install-php-extensions pdo_pgsql" + ], + "docker-compose": { + "docker-compose.yml": { + "services": [ + "database:", + " image: postgres:${POSTGRES_VERSION:-16}-alpine", + " environment:", + " POSTGRES_DB: ${POSTGRES_DB:-app}", + " # You should definitely change the password in production", + " POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}", + " POSTGRES_USER: ${POSTGRES_USER:-app}", + " volumes:", + " - database_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": [ + "database_data:" + ] + }, + "docker-compose.override.yml": { + "services": [ + "database:", + " ports:", + " - \"5432\"" + ] + } + }, + "conflict": { + "doctrine/orm": "<2.14", + "symfony/dependency-injection": "<6.2", + "symfony/framework-bundle": "<5.3" + }, + "post-install-output": [ + " * Modify your DATABASE_URL config in .env", + "", + " * Configure the driver (postgresql) and", + " server_version (16) 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: '16'", + "", + " profiling_collect_backtrace: '%kernel.debug%'", + " orm:", + " 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", + "", + "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", + " 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", + "" + ], + "executable": false + }, + "src/Entity/.gitignore": { + "contents": [ + "" + ], + "executable": false + }, + "src/Repository/.gitignore": { + "contents": [ + "" + ], + "executable": false + } + }, + "ref": "310a02a22033e35640468f48ff6bf31a25891537" + } + } +} diff --git a/archived/doctrine.doctrine-bundle/4bccd806dc647513ad379f7ffeb9555d0cb1cfb0.json b/archived/doctrine.doctrine-bundle/4bccd806dc647513ad379f7ffeb9555d0cb1cfb0.json new file mode 100644 index 00000000..742553b6 --- /dev/null +++ b/archived/doctrine.doctrine-bundle/4bccd806dc647513ad379f7ffeb9555d0cb1cfb0.json @@ -0,0 +1,129 @@ +{ + "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://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8\"", + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&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:-16}-alpine", + " environment:", + " POSTGRES_DB: ${POSTGRES_DB:-app}", + " # You should definitely change the password in production", + " POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}", + " POSTGRES_USER: ${POSTGRES_USER:-app}", + " volumes:", + " - database_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": [ + "database_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 (16) 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: '16'", + " 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", + " metadata_cache_driver:", + " type: pool", + " pool: doctrine.system_cache_pool", + " 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": "4bccd806dc647513ad379f7ffeb9555d0cb1cfb0" + } + } +} diff --git a/archived/doctrine.doctrine-bundle/4c795ada6b987f9c35734cb9bb0ef0fd270ca316.json b/archived/doctrine.doctrine-bundle/4c795ada6b987f9c35734cb9bb0ef0fd270ca316.json new file mode 100644 index 00000000..0c94bc63 --- /dev/null +++ b/archived/doctrine.doctrine-bundle/4c795ada6b987f9c35734cb9bb0ef0fd270ca316.json @@ -0,0 +1,146 @@ +{ + "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://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8\"", + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&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:-16}-alpine", + " environment:", + " POSTGRES_DB: ${POSTGRES_DB:-app}", + " # You should definitely change the password in production", + " POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}", + " POSTGRES_USER: ${POSTGRES_USER:-app}", + " volumes:", + " - database_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": [ + "database_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 (16) 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: '16'", + "", + " # only needed for MySQL", + " charset: utf8mb4", + " default_table_options:", + " collate: utf8mb4_unicode_ci", + " orm:", + " auto_generate_proxy_classes: true", + " naming_strategy: doctrine.orm.naming_strategy.underscore", + " 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", + " 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: Symfony\\Component\\Cache\\DoctrineProvider", + " public: false", + " arguments:", + " - '@doctrine.result_cache_pool'", + " doctrine.system_cache_provider:", + " class: Symfony\\Component\\Cache\\DoctrineProvider", + " public: false", + " arguments:", + " - '@doctrine.system_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": "4c795ada6b987f9c35734cb9bb0ef0fd270ca316" + } + } +} diff --git a/archived/doctrine.doctrine-bundle/d37daaaa98aa09fcfc2016ff25e42b6992daf8d9.json b/archived/doctrine.doctrine-bundle/d37daaaa98aa09fcfc2016ff25e42b6992daf8d9.json new file mode 100644 index 00000000..d58c07c6 --- /dev/null +++ b/archived/doctrine.doctrine-bundle/d37daaaa98aa09fcfc2016ff25e42b6992daf8d9.json @@ -0,0 +1,135 @@ +{ + "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://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4\"", + "#6": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4\"", + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&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:-16}-alpine", + " environment:", + " POSTGRES_DB: ${POSTGRES_DB:-app}", + " # You should definitely change the password in production", + " POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}", + " POSTGRES_USER: ${POSTGRES_USER:-app}", + " volumes:", + " - database_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": [ + "database_data:" + ] + }, + "docker-compose.override.yml": { + "services": [ + "database:", + " ports:", + " - \"5432\"" + ] + } + }, + "conflict": { + "doctrine/orm": "<2.14", + "symfony/dependency-injection": "<6.2", + "symfony/framework-bundle": "<5.3" + }, + "post-install-output": [ + " * Modify your DATABASE_URL config in .env", + "", + " * Configure the driver (postgresql) and", + " server_version (16) 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: '16'", + " orm:", + " auto_generate_proxy_classes: true", + " enable_lazy_ghost_objects: 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", + " 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", + "" + ], + "executable": false + }, + "src/Entity/.gitignore": { + "contents": [ + "" + ], + "executable": false + }, + "src/Repository/.gitignore": { + "contents": [ + "" + ], + "executable": false + } + }, + "ref": "d37daaaa98aa09fcfc2016ff25e42b6992daf8d9" + } + } +} diff --git a/archived/doctrine.doctrine-bundle/ddaef874d696cf6db4591c446d011221c94194cb.json b/archived/doctrine.doctrine-bundle/ddaef874d696cf6db4591c446d011221c94194cb.json new file mode 100644 index 00000000..d6f4da79 --- /dev/null +++ b/archived/doctrine.doctrine-bundle/ddaef874d696cf6db4591c446d011221c94194cb.json @@ -0,0 +1,137 @@ +{ + "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://app:!ChangeMe!@127.0.0.1:3306/db_name?serverVersion=8\"", + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/db_name?serverVersion=16&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:-16}-alpine", + " environment:", + " POSTGRES_DB: ${POSTGRES_DB:-app}", + " # You should definitely change the password in production", + " POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}", + " POSTGRES_USER: ${POSTGRES_USER:-app}", + " volumes:", + " - database_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": [ + "database_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 (16) 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: '16'", + "", + " # only needed for MySQL", + " charset: utf8mb4", + " default_table_options:", + " collate: utf8mb4_unicode_ci", + "", + " # backtrace queries in profiler (increases memory usage per request)", + " #profiling_collect_backtrace: '%kernel.debug%'", + " 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", + " metadata_cache_driver:", + " type: pool", + " pool: doctrine.system_cache_pool", + " 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": "ddaef874d696cf6db4591c446d011221c94194cb" + } + } +} diff --git a/archived/doctrine.doctrine-bundle/f3c1c7a146ca3f321bdc67bf46bfee35befbe08a.json b/archived/doctrine.doctrine-bundle/f3c1c7a146ca3f321bdc67bf46bfee35befbe08a.json new file mode 100644 index 00000000..bb2ce482 --- /dev/null +++ b/archived/doctrine.doctrine-bundle/f3c1c7a146ca3f321bdc67bf46bfee35befbe08a.json @@ -0,0 +1,132 @@ +{ + "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://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4\"", + "#6": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4\"", + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8" + }, + "dockerfile": [ + "RUN install-php-extensions pdo_pgsql" + ], + "docker-compose": { + "docker-compose.yml": { + "services": [ + "database:", + " image: postgres:${POSTGRES_VERSION:-16}-alpine", + " environment:", + " POSTGRES_DB: ${POSTGRES_DB:-app}", + " # You should definitely change the password in production", + " POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}", + " POSTGRES_USER: ${POSTGRES_USER:-app}", + " volumes:", + " - database_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": [ + "database_data:" + ] + }, + "docker-compose.override.yml": { + "services": [ + "database:", + " ports:", + " - \"5432\"" + ] + } + }, + "conflict": { + "doctrine/orm": "<2.14", + "symfony/dependency-injection": "<6.2", + "symfony/framework-bundle": "<5.3" + }, + "post-install-output": [ + " * Modify your DATABASE_URL config in .env", + "", + " * Configure the driver (postgresql) and", + " server_version (16) 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: '16'", + " orm:", + " auto_generate_proxy_classes: true", + " enable_lazy_ghost_objects: 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", + " 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", + "" + ], + "executable": false + }, + "src/Entity/.gitignore": { + "contents": [ + "" + ], + "executable": false + }, + "src/Repository/.gitignore": { + "contents": [ + "" + ], + "executable": false + } + }, + "ref": "f3c1c7a146ca3f321bdc67bf46bfee35befbe08a" + } + } +} diff --git a/doctrine.doctrine-bundle.1.12.json b/doctrine.doctrine-bundle.1.12.json index a4afe3bd..d6f4da79 100644 --- a/doctrine.doctrine-bundle.1.12.json +++ b/doctrine.doctrine-bundle.1.12.json @@ -17,7 +17,7 @@ "#3": "", "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", "#5": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/db_name?serverVersion=8\"", - "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/db_name?serverVersion=15&charset=utf8" + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/db_name?serverVersion=16&charset=utf8" }, "dockerfile": [ "RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev && \\", @@ -29,7 +29,7 @@ "docker-compose.yml": { "services": [ "database:", - " image: postgres:${POSTGRES_VERSION:-15}-alpine", + " image: postgres:${POSTGRES_VERSION:-16}-alpine", " environment:", " POSTGRES_DB: ${POSTGRES_DB:-app}", " # You should definitely change the password in production", @@ -56,7 +56,7 @@ " * Modify your DATABASE_URL config in .env", "", " * Configure the driver (postgresql) and", - " server_version (15) in config/packages/doctrine.yaml" + " server_version (16) in config/packages/doctrine.yaml" ] }, "files": { @@ -68,7 +68,7 @@ "", " # IMPORTANT: You MUST configure your server version,", " # either here or in the DATABASE_URL env var (see .env file)", - " #server_version: '15'", + " #server_version: '16'", "", " # only needed for MySQL", " charset: utf8mb4", @@ -131,7 +131,7 @@ "executable": false } }, - "ref": "11962ad3f13015bd463235f5adffe8f70b848a42" + "ref": "ddaef874d696cf6db4591c446d011221c94194cb" } } } diff --git a/doctrine.doctrine-bundle.1.6.json b/doctrine.doctrine-bundle.1.6.json index 1add5ea3..0c94bc63 100644 --- a/doctrine.doctrine-bundle.1.6.json +++ b/doctrine.doctrine-bundle.1.6.json @@ -17,7 +17,7 @@ "#3": "", "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", "#5": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8\"", - "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=15&charset=utf8" + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8" }, "dockerfile": [ "RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev && \\", @@ -29,7 +29,7 @@ "docker-compose.yml": { "services": [ "database:", - " image: postgres:${POSTGRES_VERSION:-15}-alpine", + " image: postgres:${POSTGRES_VERSION:-16}-alpine", " environment:", " POSTGRES_DB: ${POSTGRES_DB:-app}", " # You should definitely change the password in production", @@ -56,7 +56,7 @@ " * Modify your DATABASE_URL config in .env", "", " * Configure the driver (postgresql) and", - " server_version (15) in config/packages/doctrine.yaml" + " server_version (16) in config/packages/doctrine.yaml" ] }, "files": { @@ -68,7 +68,7 @@ "", " # IMPORTANT: You MUST configure your server version,", " # either here or in the DATABASE_URL env var (see .env file)", - " #server_version: '15'", + " #server_version: '16'", "", " # only needed for MySQL", " charset: utf8mb4", @@ -140,7 +140,7 @@ "executable": false } }, - "ref": "279afd274f082456defa961020fbfa1c7e052bb6" + "ref": "4c795ada6b987f9c35734cb9bb0ef0fd270ca316" } } } diff --git a/doctrine.doctrine-bundle.2.0.json b/doctrine.doctrine-bundle.2.0.json index 48e2b7e6..742553b6 100644 --- a/doctrine.doctrine-bundle.2.0.json +++ b/doctrine.doctrine-bundle.2.0.json @@ -17,7 +17,7 @@ "#3": "", "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", "#5": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8\"", - "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=15&charset=utf8" + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8" }, "dockerfile": [ "RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev && \\", @@ -29,7 +29,7 @@ "docker-compose.yml": { "services": [ "database:", - " image: postgres:${POSTGRES_VERSION:-15}-alpine", + " image: postgres:${POSTGRES_VERSION:-16}-alpine", " environment:", " POSTGRES_DB: ${POSTGRES_DB:-app}", " # You should definitely change the password in production", @@ -56,7 +56,7 @@ " * Modify your DATABASE_URL config in .env", "", " * Configure the driver (postgresql) and", - " server_version (15) in config/packages/doctrine.yaml" + " server_version (16) in config/packages/doctrine.yaml" ] }, "files": { @@ -68,7 +68,7 @@ "", " # IMPORTANT: You MUST configure your server version,", " # either here or in the DATABASE_URL env var (see .env file)", - " #server_version: '15'", + " #server_version: '16'", " orm:", " auto_generate_proxy_classes: true", " naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware", @@ -123,7 +123,7 @@ "executable": false } }, - "ref": "8dc1374fb2cce9cf3e8df2057634655db992fd34" + "ref": "4bccd806dc647513ad379f7ffeb9555d0cb1cfb0" } } } diff --git a/doctrine.doctrine-bundle.2.10.json b/doctrine.doctrine-bundle.2.10.json index 830751f7..b7ead3f1 100644 --- a/doctrine.doctrine-bundle.2.10.json +++ b/doctrine.doctrine-bundle.2.10.json @@ -18,7 +18,7 @@ "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", "#5": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4\"", "#6": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4\"", - "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=15&charset=utf8" + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8" }, "dockerfile": [ "RUN install-php-extensions pdo_pgsql" @@ -27,7 +27,7 @@ "docker-compose.yml": { "services": [ "database:", - " image: postgres:${POSTGRES_VERSION:-15}-alpine", + " image: postgres:${POSTGRES_VERSION:-16}-alpine", " environment:", " POSTGRES_DB: ${POSTGRES_DB:-app}", " # You should definitely change the password in production", @@ -59,7 +59,7 @@ " * Modify your DATABASE_URL config in .env", "", " * Configure the driver (postgresql) and", - " server_version (15) in config/packages/doctrine.yaml" + " server_version (16) in config/packages/doctrine.yaml" ] }, "files": { @@ -71,7 +71,7 @@ "", " # IMPORTANT: You MUST configure your server version,", " # either here or in the DATABASE_URL env var (see .env file)", - " #server_version: '15'", + " #server_version: '16'", "", " profiling_collect_backtrace: '%kernel.debug%'", " orm:", @@ -131,7 +131,7 @@ "executable": false } }, - "ref": "0b4a11ee7e60b36227502ed26874edd7e8b66353" + "ref": "310a02a22033e35640468f48ff6bf31a25891537" } } } diff --git a/doctrine.doctrine-bundle.2.3.json b/doctrine.doctrine-bundle.2.3.json index 83064841..ab68f037 100644 --- a/doctrine.doctrine-bundle.2.3.json +++ b/doctrine.doctrine-bundle.2.3.json @@ -17,7 +17,7 @@ "#3": "", "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", "#5": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8&charset=utf8mb4\"", - "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=15&charset=utf8" + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8" }, "dockerfile": [ "RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev; \\", @@ -29,7 +29,7 @@ "docker-compose.yml": { "services": [ "database:", - " image: postgres:${POSTGRES_VERSION:-15}-alpine", + " image: postgres:${POSTGRES_VERSION:-16}-alpine", " environment:", " POSTGRES_DB: ${POSTGRES_DB:-app}", " # You should definitely change the password in production", @@ -56,7 +56,7 @@ " * Modify your DATABASE_URL config in .env", "", " * Configure the driver (postgresql) and", - " server_version (15) in config/packages/doctrine.yaml" + " server_version (16) in config/packages/doctrine.yaml" ] }, "files": { @@ -68,7 +68,7 @@ "", " # IMPORTANT: You MUST configure your server version,", " # either here or in the DATABASE_URL env var (see .env file)", - " #server_version: '15'", + " #server_version: '16'", " orm:", " auto_generate_proxy_classes: true", " naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware", @@ -130,7 +130,7 @@ "executable": false } }, - "ref": "117acb189cca1d761fd50fa47dceecff1ad9d266" + "ref": "13f12b59a228240cb9627eea59890edf05f2040c" } } } diff --git a/doctrine.doctrine-bundle.2.4.json b/doctrine.doctrine-bundle.2.4.json index 2ce86929..b1719e33 100644 --- a/doctrine.doctrine-bundle.2.4.json +++ b/doctrine.doctrine-bundle.2.4.json @@ -17,7 +17,7 @@ "#3": "", "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", "#5": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8&charset=utf8mb4\"", - "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=15&charset=utf8" + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8" }, "dockerfile": [ "RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev; \\", @@ -29,7 +29,7 @@ "docker-compose.yml": { "services": [ "database:", - " image: postgres:${POSTGRES_VERSION:-15}-alpine", + " image: postgres:${POSTGRES_VERSION:-16}-alpine", " environment:", " POSTGRES_DB: ${POSTGRES_DB:-app}", " # You should definitely change the password in production", @@ -59,7 +59,7 @@ " * Modify your DATABASE_URL config in .env", "", " * Configure the driver (postgresql) and", - " server_version (15) in config/packages/doctrine.yaml" + " server_version (16) in config/packages/doctrine.yaml" ] }, "files": { @@ -71,7 +71,7 @@ "", " # IMPORTANT: You MUST configure your server version,", " # either here or in the DATABASE_URL env var (see .env file)", - " #server_version: '15'", + " #server_version: '16'", " orm:", " auto_generate_proxy_classes: true", " naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware", @@ -125,7 +125,7 @@ "executable": false } }, - "ref": "013b823e7fee65890b23e40f31e6667a1ac519ac" + "ref": "191046a1fdd1a58fcca48d8bf2f58c45a93b1d00" } } } diff --git a/doctrine.doctrine-bundle.2.8.json b/doctrine.doctrine-bundle.2.8.json index 553296f2..d58c07c6 100644 --- a/doctrine.doctrine-bundle.2.8.json +++ b/doctrine.doctrine-bundle.2.8.json @@ -18,7 +18,7 @@ "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", "#5": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4\"", "#6": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4\"", - "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=15&charset=utf8" + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8" }, "dockerfile": [ "RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev; \\", @@ -30,7 +30,7 @@ "docker-compose.yml": { "services": [ "database:", - " image: postgres:${POSTGRES_VERSION:-15}-alpine", + " image: postgres:${POSTGRES_VERSION:-16}-alpine", " environment:", " POSTGRES_DB: ${POSTGRES_DB:-app}", " # You should definitely change the password in production", @@ -62,7 +62,7 @@ " * Modify your DATABASE_URL config in .env", "", " * Configure the driver (postgresql) and", - " server_version (15) in config/packages/doctrine.yaml" + " server_version (16) in config/packages/doctrine.yaml" ] }, "files": { @@ -74,7 +74,7 @@ "", " # IMPORTANT: You MUST configure your server version,", " # either here or in the DATABASE_URL env var (see .env file)", - " #server_version: '15'", + " #server_version: '16'", " orm:", " auto_generate_proxy_classes: true", " enable_lazy_ghost_objects: true", @@ -129,7 +129,7 @@ "executable": false } }, - "ref": "67961f095352f829a24c035639b3d0d3378ffbf2" + "ref": "d37daaaa98aa09fcfc2016ff25e42b6992daf8d9" } } } diff --git a/doctrine.doctrine-bundle.2.9.json b/doctrine.doctrine-bundle.2.9.json index e69b6a09..bb2ce482 100644 --- a/doctrine.doctrine-bundle.2.9.json +++ b/doctrine.doctrine-bundle.2.9.json @@ -18,7 +18,7 @@ "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", "#5": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4\"", "#6": "DATABASE_URL=\"mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4\"", - "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=15&charset=utf8" + "DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8" }, "dockerfile": [ "RUN install-php-extensions pdo_pgsql" @@ -27,7 +27,7 @@ "docker-compose.yml": { "services": [ "database:", - " image: postgres:${POSTGRES_VERSION:-15}-alpine", + " image: postgres:${POSTGRES_VERSION:-16}-alpine", " environment:", " POSTGRES_DB: ${POSTGRES_DB:-app}", " # You should definitely change the password in production", @@ -59,7 +59,7 @@ " * Modify your DATABASE_URL config in .env", "", " * Configure the driver (postgresql) and", - " server_version (15) in config/packages/doctrine.yaml" + " server_version (16) in config/packages/doctrine.yaml" ] }, "files": { @@ -71,7 +71,7 @@ "", " # IMPORTANT: You MUST configure your server version,", " # either here or in the DATABASE_URL env var (see .env file)", - " #server_version: '15'", + " #server_version: '16'", " orm:", " auto_generate_proxy_classes: true", " enable_lazy_ghost_objects: true", @@ -126,7 +126,7 @@ "executable": false } }, - "ref": "31de7260684f6465dbbddb01a704bd48a6bbd4ea" + "ref": "f3c1c7a146ca3f321bdc67bf46bfee35befbe08a" } } }