Skip to content

Commit 98e9165

Browse files
authored
Update installation instructions for Durable Workflow
Updated Laravel documentation links and package name for Durable Workflow.
1 parent 17329ff commit 98e9165

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

versioned_docs/version-1.x/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Durable Workflow can be used with any queue driver that Laravel supports (except
1818
- Database
1919
- Redis
2020

21-
Each queue driver has its own [prerequisites](https://laravel.com/docs/12.x/queues#driver-prerequisites).
21+
Each queue driver has its own [prerequisites](https://laravel.com/docs/13.x/queues#driver-prerequisites).
2222

23-
Durable Workflow also requires a cache driver that supports [locks](https://laravel.com/docs/12.x/cache#atomic-locks).
23+
Durable Workflow also requires a cache driver that supports [locks](https://laravel.com/docs/13.x/cache#atomic-locks).
2424

2525
> ✨ SQS Support: `timer()` and `awaitWithTimeout()` work with any duration, even when using the SQS queue driver. Durable Workflow automatically handles SQS's delay limitation transparently.
2626
@@ -29,7 +29,7 @@ Durable Workflow also requires a cache driver that supports [locks](https://lara
2929
Durable Workflow is installable via Composer. To install it, run the following command in your Laravel project:
3030

3131
```bash
32-
composer require laravel-workflow/laravel-workflow
32+
composer require durable-workflow/workflow
3333
```
3434

3535
After installing, you must also publish the migrations. To publish the migrations, run the following command:
@@ -46,4 +46,4 @@ php artisan migrate
4646

4747
## Running Workers
4848

49-
Durable Workflow uses queues to run workflows and activities in the background. You will need to either run the `queue:work` [command](https://laravel.com/docs/12.x/queues#the-queue-work-command) or use [Horizon](https://laravel.com/docs/12.x/horizon) to run your queue workers. Without a queue worker, workflows and activities will not be processed. You cannot use the sync driver with queue workers. To run workflows and activities in parallel, you will need more than one queue worker.
49+
Durable Workflow uses queues to run workflows and activities in the background. You will need to either run the `queue:work` [command](https://laravel.com/docs/13.x/queues#the-queue-work-command) or use [Horizon](https://laravel.com/docs/13.x/horizon) to run your queue workers. Without a queue worker, workflows and activities will not be processed. You cannot use the sync driver with queue workers. To run workflows and activities in parallel, you will need more than one queue worker.

0 commit comments

Comments
 (0)