From 127e7674d73c5ff9192a38bf2898ca389a491ea5 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Mon, 2 Feb 2026 19:20:26 +0100 Subject: [PATCH] fix: wrong import at deploy example --- examples/project-deploy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/project-deploy.php b/examples/project-deploy.php index 79fe623..aa26385 100644 --- a/examples/project-deploy.php +++ b/examples/project-deploy.php @@ -9,7 +9,7 @@ namespace Deployer; // Option 1: Require from git raw URL (works immediately, no composer) -require 'https://git.cloonar.com/Cloonar/ci-templates/raw/branch/main/deployer/typo3-recipe.php'; +require 'https://git.cloonar.com/infrastructure/ci-templates/raw/branch/main/deployer/typo3-recipe.php'; // Option 2: Via composer (after adding to require-dev) // require __DIR__ . '/../vendor/cloonar/ci-templates/deployer/typo3-recipe.php';