From cd321597a21fdb6d72d296cdda2c6de075ea9522 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20B=C3=BChlmann?= Date: Thu, 26 Feb 2026 01:39:51 +0100 Subject: [PATCH] add timble-one/backend-bundle (#1951) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Timo Bühlmann --- timble-one/backend-bundle/0.1/manifest.json | 8 ++++++++ timble-one/backend-bundle/0.1/post-install.txt | 16 ++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 timble-one/backend-bundle/0.1/manifest.json create mode 100644 timble-one/backend-bundle/0.1/post-install.txt diff --git a/timble-one/backend-bundle/0.1/manifest.json b/timble-one/backend-bundle/0.1/manifest.json new file mode 100644 index 00000000..834a0e5f --- /dev/null +++ b/timble-one/backend-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "TimbleOne\\BackendBundle\\BackendBundle": ["all"] + }, + "dockerfile": [ + "RUN install-php-extensions gd exif" + ] +} diff --git a/timble-one/backend-bundle/0.1/post-install.txt b/timble-one/backend-bundle/0.1/post-install.txt new file mode 100644 index 00000000..21def35b --- /dev/null +++ b/timble-one/backend-bundle/0.1/post-install.txt @@ -0,0 +1,16 @@ + + TimbleOne BackendBundle + + +This bundle requires the PHP extensions gd and exif. + +If your project uses Symfony Docker and has a root Dockerfile with: + ###> recipes ### + ###< recipes ### +then Symfony Flex will add: + RUN install-php-extensions gd exif + +If you don't use Docker, install these PHP extensions on your machine/server +and restart PHP-FPM / your web server afterwards. + +Composer will fail with a clear error until ext-gd and ext-exif are available.