From 2804ce94166db6da8c681dc822c7f0ac51a137cf Mon Sep 17 00:00:00 2001 From: Durable Workflow Date: Mon, 13 Apr 2026 23:16:03 +0000 Subject: [PATCH] Rename package to durable-workflow/workflow Rebrand the Composer package name from laravel-workflow/laravel-workflow to durable-workflow/workflow. The `replace` clause keeps the old name resolvable so existing consumers continue to work during the transition. PHP namespace (Workflow\) is unchanged. Co-Authored-By: Claude Opus 4.6 --- composer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a67f5a68..cf3b21d7 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,11 @@ { - "name": "laravel-workflow/laravel-workflow", + "name": "durable-workflow/workflow", "description": "Durable workflow engine that allows users to write long running persistent distributed workflows (orchestrations) in PHP powered by Laravel queues.", "type": "library", "license": "MIT", + "replace": { + "laravel-workflow/laravel-workflow": "self.version" + }, "autoload": { "psr-4": { "Workflow\\": "src/"