From 3be318a2c95fe93721c77850cde4d55a75580be2 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 24 Sep 2025 17:49:28 +0100 Subject: [PATCH] Automatically run `composer install` Signed-off-by: Oliver Davies --- openapi/build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/openapi/build b/openapi/build index 08b990b..bbfbccb 100755 --- a/openapi/build +++ b/openapi/build @@ -18,4 +18,9 @@ openapi-generator-cli generate \ echo "" +case "$GENERATOR" in + php) + (cd "$OUT" && composer install) + ;; +esac tree "$OUT"