From 210fc159ed74bba56b43c9d49993ee918ba0c5f1 Mon Sep 17 00:00:00 2001 From: "github-action[bot]" <> Date: Sun, 7 Jun 2026 15:57:18 +0000 Subject: [PATCH] Update Flex endpoint --- RECIPES.md | 1 + ...ca4ab01d8373a0d4cf33aa694765ad903b1d6.json | 85 +++++++++++++++++++ index.json | 3 + netbull.media-bundle.7.2.json | 85 +++++++++++++++++++ 4 files changed, 174 insertions(+) create mode 100644 archived/netbull.media-bundle/17dca4ab01d8373a0d4cf33aa694765ad903b1d6.json create mode 100644 netbull.media-bundle.7.2.json diff --git a/RECIPES.md b/RECIPES.md index 487e9364..4f4d9b37 100644 --- a/RECIPES.md +++ b/RECIPES.md @@ -452,6 +452,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github. | [nelmio/api-doc-bundle](https://packagist.org/packages/nelmio/api-doc-bundle) | [3.0](../../../tree/main/nelmio/api-doc-bundle/3.0) | | [nelmio/solarium-bundle](https://packagist.org/packages/nelmio/solarium-bundle) | [5.0](../../../tree/main/nelmio/solarium-bundle/5.0) | | [neo4j/neo4j-bundle](https://packagist.org/packages/neo4j/neo4j-bundle) | [1.0](../../../tree/main/neo4j/neo4j-bundle/1.0) | +| [netbull/media-bundle](https://packagist.org/packages/netbull/media-bundle) | [7.2](../../../tree/main/netbull/media-bundle/7.2) | | [netbull/security-bundle](https://packagist.org/packages/netbull/security-bundle) | [1.0](../../../tree/main/netbull/security-bundle/1.0) | | [netgen/content-browser](https://packagist.org/packages/netgen/content-browser) | [2.0](../../../tree/main/netgen/content-browser/2.0) | | [netgen/layouts-contentful](https://packagist.org/packages/netgen/layouts-contentful) | [2.0](../../../tree/main/netgen/layouts-contentful/2.0) | diff --git a/archived/netbull.media-bundle/17dca4ab01d8373a0d4cf33aa694765ad903b1d6.json b/archived/netbull.media-bundle/17dca4ab01d8373a0d4cf33aa694765ad903b1d6.json new file mode 100644 index 00000000..2724c149 --- /dev/null +++ b/archived/netbull.media-bundle/17dca4ab01d8373a0d4cf33aa694765ad903b1d6.json @@ -0,0 +1,85 @@ +{ + "manifests": { + "netbull/media-bundle": { + "manifest": { + "bundles": { + "NetBull\\MediaBundle\\NetBullMediaBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "gitignore": [ + "/public/uploads/media/" + ], + "post-install-output": [ + " ", + " NetBull MediaBundle ", + " ", + "", + " * A starter configuration was created at config/packages/netbull_media.yaml.", + " Review default_context, your contexts and their thumbnail formats.", + "", + " * The view/download routes were imported via config/routes/netbull_media.yaml", + " (/media/view/{id}/{format} and /media/download/{id}/{format}).", + "", + " * Uploads are stored under public/uploads/media by default. For production,", + " configure S3 under netbull_media.filesystem.s3 and point the providers at", + " netbull_media.filesystem.s3.", + "", + " * Asynchronous thumbnails are optional: run composer require symfony/messenger", + " and set netbull_media.thumbnail.async: true to offload resizing to a worker.", + "", + " * Ensure Doctrine maps the bundle's Media entity and run your migrations.", + "", + " Reference: https://packagist.org/packages/netbull/media-bundle" + ] + }, + "files": { + "config/packages/netbull_media.yaml": { + "contents": [ + "netbull_media:", + " default_context: 'default'", + "", + " # Uploads are stored on the local filesystem by default. For production, configure", + " # \"filesystem.s3\" instead and point the providers at \"netbull_media.filesystem.s3\".", + " filesystem:", + " local:", + " directory: '%kernel.project_dir%/public/uploads/media'", + " create: true", + "", + " providers:", + " image:", + " filesystem: netbull_media.filesystem.local", + "", + " # Thumbnails are generated in-process by default. Set this to true to offload resizing to a", + " # Symfony Messenger worker (requires \"composer require symfony/messenger\").", + " thumbnail:", + " async: false", + "", + " # A context groups one or more providers with the thumbnail formats generated for them.", + " contexts:", + " default:", + " providers:", + " - netbull_media.provider.image", + " formats:", + " thumb: { width: 150, height: 150, quality: 80 }", + " normal: { width: 600, quality: 85 }", + "" + ], + "executable": false + }, + "config/routes/netbull_media.yaml": { + "contents": [ + "netbull_media:", + " resource: '@NetBullMediaBundle/config/routes.yaml'", + "" + ], + "executable": false + } + }, + "ref": "17dca4ab01d8373a0d4cf33aa694765ad903b1d6" + } + } +} diff --git a/index.json b/index.json index 9fa1e872..96aaf286 100644 --- a/index.json +++ b/index.json @@ -1436,6 +1436,9 @@ "0.4", "1.0" ], + "netbull/media-bundle": [ + "7.2" + ], "netbull/security-bundle": [ "1.0" ], diff --git a/netbull.media-bundle.7.2.json b/netbull.media-bundle.7.2.json new file mode 100644 index 00000000..2724c149 --- /dev/null +++ b/netbull.media-bundle.7.2.json @@ -0,0 +1,85 @@ +{ + "manifests": { + "netbull/media-bundle": { + "manifest": { + "bundles": { + "NetBull\\MediaBundle\\NetBullMediaBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "gitignore": [ + "/public/uploads/media/" + ], + "post-install-output": [ + " ", + " NetBull MediaBundle ", + " ", + "", + " * A starter configuration was created at config/packages/netbull_media.yaml.", + " Review default_context, your contexts and their thumbnail formats.", + "", + " * The view/download routes were imported via config/routes/netbull_media.yaml", + " (/media/view/{id}/{format} and /media/download/{id}/{format}).", + "", + " * Uploads are stored under public/uploads/media by default. For production,", + " configure S3 under netbull_media.filesystem.s3 and point the providers at", + " netbull_media.filesystem.s3.", + "", + " * Asynchronous thumbnails are optional: run composer require symfony/messenger", + " and set netbull_media.thumbnail.async: true to offload resizing to a worker.", + "", + " * Ensure Doctrine maps the bundle's Media entity and run your migrations.", + "", + " Reference: https://packagist.org/packages/netbull/media-bundle" + ] + }, + "files": { + "config/packages/netbull_media.yaml": { + "contents": [ + "netbull_media:", + " default_context: 'default'", + "", + " # Uploads are stored on the local filesystem by default. For production, configure", + " # \"filesystem.s3\" instead and point the providers at \"netbull_media.filesystem.s3\".", + " filesystem:", + " local:", + " directory: '%kernel.project_dir%/public/uploads/media'", + " create: true", + "", + " providers:", + " image:", + " filesystem: netbull_media.filesystem.local", + "", + " # Thumbnails are generated in-process by default. Set this to true to offload resizing to a", + " # Symfony Messenger worker (requires \"composer require symfony/messenger\").", + " thumbnail:", + " async: false", + "", + " # A context groups one or more providers with the thumbnail formats generated for them.", + " contexts:", + " default:", + " providers:", + " - netbull_media.provider.image", + " formats:", + " thumb: { width: 150, height: 150, quality: 80 }", + " normal: { width: 600, quality: 85 }", + "" + ], + "executable": false + }, + "config/routes/netbull_media.yaml": { + "contents": [ + "netbull_media:", + " resource: '@NetBullMediaBundle/config/routes.yaml'", + "" + ], + "executable": false + } + }, + "ref": "17dca4ab01d8373a0d4cf33aa694765ad903b1d6" + } + } +}