You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/installation.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,12 @@ sidebar_position: 2
6
6
7
7
## Requirements
8
8
9
-
Workflow requires the following to run:
9
+
Durable Workflow requires the following to run:
10
10
11
11
- PHP 8.1 or later
12
12
- Laravel 9 or later
13
13
14
-
Workflow can be used with any queue driver that Laravel supports (except the `sync` driver), including:
14
+
Durable Workflow can be used with any queue driver that Laravel supports (except the `sync` driver), including:
15
15
16
16
- Amazon SQS
17
17
- Beanstalkd
@@ -20,19 +20,19 @@ Workflow can be used with any queue driver that Laravel supports (except the `sy
20
20
21
21
Each queue driver has its own [prerequisites](https://laravel.com/docs/12.x/queues#driver-prerequisites).
22
22
23
-
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/12.x/cache#atomic-locks).
24
24
25
-
> ✨ SQS Support: `timer()` and `awaitWithTimeout()` work with any duration, even when using the SQS queue driver. Workflow automatically handles SQS's delay limitation transparently.
25
+
> ✨ 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.
26
26
27
-
## Installing the Workflow package
27
+
## Installing Durable Workflow
28
28
29
-
The Workflow package is installable via Composer. To install it, run the following command in your Laravel project:
29
+
Durable Workflow is installable via Composer. To install it, run the following command in your Laravel project:
The Workflow package 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.
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.
0 commit comments