Skip to content

Commit 27c4589

Browse files
committed
Laravel 12.x
- increased Laravel version constraint to 12
1 parent 734463a commit 27c4589

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Laravel 6 - 11.x Queue Worker for Elastic Beanstalk
1+
# Laravel 6 - 12.x Queue Worker for Elastic Beanstalk
22

33
*Use your Laravel application as a worker to consume queues on AWS Elasticbeanstalk*
44

5-
Laravel provides a [wonderful array](https://laravel.com/docs/11.x/queues) of drivers for consuming queues within your application as well as [some documentation](https://laravel.com/docs/11.x/queues#supervisor-configuration) on how to manage your application with [Supervisord](http://supervisord.org/) when it is acting as a worker.
5+
Laravel provides a [wonderful array](https://laravel.com/docs/12.x/queues) of drivers for consuming queues within your application as well as [some documentation](https://laravel.com/docs/12.x/queues#supervisor-configuration) on how to manage your application with [Supervisord](http://supervisord.org/) when it is acting as a worker.
66

77
Unfortunately that's where the documentation ends. There is no guidance on how to manage multiple workers from a devops context which is a huge bummer. But don't worry fam I've got your covered.
88

@@ -42,7 +42,7 @@ composer require "foxxmd/laravel-elasticbeanstalk-queue-worker@^1.0"
4242

4343
Publish using artisan
4444

45-
```php
45+
```bash
4646
php artisan vendor:publish --tag=ebworker
4747
```
4848

@@ -73,7 +73,7 @@ IS_WORKER = true
7373

7474
### Set Queue Driver / Connection
7575

76-
Set the [driver](https://laravel.com/docs/11.x/queues#driver-prerequisites) in your your EB environmental variables:
76+
Set the [driver](https://laravel.com/docs/12.x/queues#driver-prerequisites) in your your EB environmental variables:
7777

7878
```bash
7979
QUEUE_CONNECTION = [driver]

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
}
1212
],
1313
"require": {
14-
"illuminate/console": "6 - 11",
15-
"illuminate/support": "6 - 11"
14+
"illuminate/console": "6 - 12",
15+
"illuminate/support": "6 - 12"
1616
},
1717
"autoload": {
1818
"psr-4": {

0 commit comments

Comments
 (0)