Skip to content

Commit 28b0ee8

Browse files
Update the readme to include Laravel 11 support.
1 parent 3e8fcab commit 28b0ee8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ This Laravel/Lumen package provides a queue driver for Amazon's SQS FIFO queues.
1111

1212
## Versions
1313

14-
This package has been tested on Laravel 4.1 through Laravel 10.x, though it may continue to work on later versions as they are released. This section will be updated to reflect the versions on which the package has actually been tested.
14+
This package has been tested on Laravel 4.1 through Laravel 11.x, though it may continue to work on later versions as they are released. This section will be updated to reflect the versions on which the package has actually been tested.
1515

16-
This readme has been updated to show information for the most currently supported versions (9.x - 10.x). For Laravel 4.1 through Laravel 8.x, view the 2.x branch.
16+
This readme has been updated to show information for the most currently supported versions (9.x - 11.x). For Laravel 4.1 through Laravel 8.x, view the 2.x branch.
1717

1818
## Install
1919

@@ -25,11 +25,11 @@ $ composer require shiftonelabs/laravel-sqs-fifo-queue
2525

2626
Once composer has been updated and the package has been installed, the service provider will need to be loaded.
2727

28-
#### Laravel 9.x, 10.x
28+
#### Laravel 9.x, 10.x, 11.x
2929

3030
This package uses auto package discovery. The service provider will automatically be registered.
3131

32-
#### Lumen 9.x, 10.x
32+
#### Lumen 9.x, 10.x, 11.x
3333

3434
Open `bootstrap/app.php` and add following line under the "Register Service Providers" section:
3535

@@ -39,7 +39,7 @@ $app->register(ShiftOneLabs\LaravelSqsFifoQueue\LaravelSqsFifoQueueServiceProvid
3939

4040
## Configuration
4141

42-
#### Laravel/Lumen 9.x, 10.x
42+
#### Laravel/Lumen 9.x, 10.x, 11.x
4343

4444
If using Lumen, create a `config` directory in your project root if you don't already have one. Next, copy `vendor/laravel/lumen-framework/config/queue.php` to `config/queue.php`.
4545

@@ -121,11 +121,11 @@ The `suffix` config option is used to support queues for different environments
121121

122122
#### Jobs & Database Transactions
123123

124-
The [`after_commit` configuration option](https://laravel.com/docs/10.x/queues#jobs-and-database-transactions) is used to govern how jobs are handled when queued in the middle of a database transaction. When set to `true`, this option ensures that jobs that are queued during a database transaction are not actually dispatched until after the database transaction is committed. If the transaction is rolled back, the job will be discarded and not dispatched. If there are no active database transactions, the job will be dispatched immediately.
124+
The [`after_commit` configuration option](https://laravel.com/docs/11.x/queues#jobs-and-database-transactions) is used to govern how jobs are handled when queued in the middle of a database transaction. When set to `true`, this option ensures that jobs that are queued during a database transaction are not actually dispatched until after the database transaction is committed. If the transaction is rolled back, the job will be discarded and not dispatched. If there are no active database transactions, the job will be dispatched immediately.
125125

126126
#### Queued Event Listeners
127127

128-
At this time, [queued event listeners](https://laravel.com/docs/10.x/events#queued-event-listeners) cannot be handled by this package. The implementation for this would require taking over Laravel's event dispatcher, which is not something this package is prepared to do at this time. To work around this, you would need to convert your queued listener to not be queued, but to then dispatch a new queued job that handles the work.
128+
At this time, [queued event listeners](https://laravel.com/docs/11.x/events#queued-event-listeners) cannot be handled by this package. The implementation for this would require taking over Laravel's event dispatcher, which is not something this package is prepared to do at this time. To work around this, you would need to convert your queued listener to not be queued, but to then dispatch a new queued job that handles the work.
129129

130130
## Usage
131131

0 commit comments

Comments
 (0)