Skip to content

Commit 79f45c1

Browse files
committed
support for Laravel12
1 parent f7a3f9d commit 79f45c1

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,18 @@ Only the latest version will get new features. Bug fixes will be provided using
1616
## Installation
1717

1818
You can install this package via composer using this command:
19+
Change composer.json:
20+
```json
21+
"repositories": [
22+
{
23+
"type": "vcs",
24+
"url": "https://github.com/padosoft/laravel-queue-rabbitmq.git"
25+
}
26+
],
27+
"require": {
28+
"padosoft/laravel-queue-rabbitmq": "dev-main"
29+
},
30+
```
1931

2032
```
2133
composer require vladimir-yuldashev/laravel-queue-rabbitmq

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "vladimir-yuldashev/laravel-queue-rabbitmq",
2+
"name": "padosoft/laravel-queue-rabbitmq",
33
"description": "RabbitMQ driver for Laravel Queue. Supports Laravel Horizon.",
44
"license": "MIT",
55
"authors": [
@@ -11,16 +11,16 @@
1111
"require": {
1212
"php": "^8.0",
1313
"ext-json": "*",
14-
"illuminate/queue": "^10.0|^11.0",
14+
"illuminate/queue": "^10.0|^11.0|^12.0",
1515
"php-amqplib/php-amqplib": "^v3.6"
1616
},
1717
"require-dev": {
1818
"phpunit/phpunit": "^10.0|^11.0",
1919
"mockery/mockery": "^1.0",
2020
"laravel/horizon": "^5.0",
21-
"orchestra/testbench": "^7.0|^8.0|^9.0",
21+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
2222
"laravel/pint": "^1.2",
23-
"laravel/framework": "^9.0|^10.0|^11.0"
23+
"laravel/framework": "^9.0|^10.0|^11.0|^12.0"
2424
},
2525
"autoload": {
2626
"psr-4": {

0 commit comments

Comments
 (0)