|
1 | 1 | { |
2 | | - "name": "nick-scalewest/task-dispatcher", |
| 2 | + "name": "pensoft/task-dispatcher", |
3 | 3 | "description": "RabbitMQ driver for Laravel Queue. Supports Laravel Horizon.", |
4 | 4 | "license": "MIT", |
5 | 5 | "authors": [ |
|
9 | 9 | } |
10 | 10 | ], |
11 | 11 | "require": { |
12 | | - "php": "^8.0", |
| 12 | + "php": "^7.3|^8.0", |
13 | 13 | "ext-json": "*", |
14 | | - "illuminate/queue": "^9.0", |
15 | | - "php-amqplib/php-amqplib": "^3.0" |
| 14 | + "illuminate/queue": "^8.0", |
| 15 | + "php-amqplib/php-amqplib": "^2.12|^3.0" |
16 | 16 | }, |
17 | 17 | "require-dev": { |
18 | 18 | "phpunit/phpunit": "^9.3", |
19 | 19 | "mockery/mockery": "^1.0", |
20 | 20 | "laravel/horizon": "^5.0", |
21 | | - "orchestra/testbench": "^7.0", |
22 | | - "laravel/pint": "^1.2" |
| 21 | + "friendsofphp/php-cs-fixer": "^2.17", |
| 22 | + "orchestra/testbench": "^6.0" |
23 | 23 | }, |
24 | 24 | "autoload": { |
25 | 25 | "psr-4": { |
|
33 | 33 | }, |
34 | 34 | "extra": { |
35 | 35 | "branch-alias": { |
36 | | - "dev-master": "13.0-dev" |
| 36 | + "dev-master": "11.0-dev" |
37 | 37 | }, |
38 | 38 | "laravel": { |
39 | 39 | "providers": [ |
|
49 | 49 | "@test:style", |
50 | 50 | "@test:unit" |
51 | 51 | ], |
52 | | - "require": { |
53 | | - "php": "^8.0", |
54 | | - "ext-json": "*", |
55 | | - "illuminate/queue": "^9.0|^10.0", |
56 | | - "php-amqplib/php-amqplib": "^v3.2" |
57 | | - }, |
58 | | - "require-dev": { |
59 | | - "phpunit/phpunit": "^9.3", |
60 | | - "mockery/mockery": "^1.0", |
61 | | - "laravel/horizon": "^5.0", |
62 | | - "orchestra/testbench": "^7.0|^8.0", |
63 | | - "laravel/pint": "^1.2", |
64 | | - "laravel/framework": "^9.0|^10.0" |
65 | | - }, |
66 | | - "autoload": { |
67 | | - "psr-4": { |
68 | | - "VladimirYuldashev\\LaravelQueueRabbitMQ\\": "src/" |
69 | | - } |
70 | | - }, |
71 | | - "autoload-dev": { |
72 | | - "psr-4": { |
73 | | - "VladimirYuldashev\\LaravelQueueRabbitMQ\\Tests\\": "tests/" |
74 | | - } |
75 | | - }, |
76 | | - "extra": { |
77 | | - "branch-alias": { |
78 | | - "dev-master": "13.0-dev" |
79 | | - }, |
80 | | - "laravel": { |
81 | | - "providers": [ |
82 | | - "VladimirYuldashev\\LaravelQueueRabbitMQ\\LaravelQueueRabbitMQServiceProvider" |
83 | | - ] |
84 | | - } |
85 | | - }, |
86 | | - "suggest": { |
87 | | - "ext-pcntl": "Required to use all features of the queue consumer." |
88 | | - }, |
89 | | - "scripts": { |
90 | | - "test": [ |
91 | | - "@test:style", |
92 | | - "@test:unit" |
93 | | - ], |
94 | | - "test:style": "@php vendor/bin/pint --test -v", |
95 | | - "test:unit": "@php vendor/bin/phpunit", |
96 | | - "fix:style": "@php vendor/bin/pint -v" |
97 | | - }, |
98 | | - "minimum-stability": "dev", |
99 | | - "prefer-stable": true |
| 52 | + "test:style": "@php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes --dry-run --diff --verbose", |
| 53 | + "test:unit": "@php vendor/bin/phpunit", |
| 54 | + "fix:style": "@php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes --diff --verbose" |
| 55 | + }, |
| 56 | + "minimum-stability": "dev", |
| 57 | + "prefer-stable": true |
100 | 58 | } |
0 commit comments