Skip to content

Commit 0f8ef83

Browse files
authored
Update composer.json
1 parent 82d336d commit 0f8ef83

File tree

1 file changed

+13
-55
lines changed

1 file changed

+13
-55
lines changed

composer.json

Lines changed: 13 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "nick-scalewest/task-dispatcher",
2+
"name": "pensoft/task-dispatcher",
33
"description": "RabbitMQ driver for Laravel Queue. Supports Laravel Horizon.",
44
"license": "MIT",
55
"authors": [
@@ -9,17 +9,17 @@
99
}
1010
],
1111
"require": {
12-
"php": "^8.0",
12+
"php": "^7.3|^8.0",
1313
"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"
1616
},
1717
"require-dev": {
1818
"phpunit/phpunit": "^9.3",
1919
"mockery/mockery": "^1.0",
2020
"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"
2323
},
2424
"autoload": {
2525
"psr-4": {
@@ -33,7 +33,7 @@
3333
},
3434
"extra": {
3535
"branch-alias": {
36-
"dev-master": "13.0-dev"
36+
"dev-master": "11.0-dev"
3737
},
3838
"laravel": {
3939
"providers": [
@@ -49,52 +49,10 @@
4949
"@test:style",
5050
"@test:unit"
5151
],
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
10058
}

0 commit comments

Comments
 (0)