-
-
Notifications
You must be signed in to change notification settings - Fork 287
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 3.06 KB
/
composer.json
File metadata and controls
92 lines (92 loc) · 3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "yiisoft/yii2-queue",
"description": "Yii2 Queue Extension which supports queues based on DB, Redis, RabbitMQ, Beanstalk, SQS, and Gearman",
"type": "yii2-extension",
"keywords": ["yii", "queue", "async", "gii", "db", "redis", "rabbitmq", "beanstalk", "gearman", "sqs"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Roman Zhuravlev",
"email": "zhuravljov@gmail.com"
}
],
"support": {
"issues": "https://github.com/yiisoft/yii2-queue/issues",
"source": "https://github.com/yiisoft/yii2-queue",
"docs": "https://github.com/yiisoft/yii2-queue/blob/master/docs/guide"
},
"require": {
"php": ">=8.3",
"yiisoft/yii2": "~2.0.54",
"symfony/process": "^7.0",
"laravel/serializable-closure": "^v2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^12.5.0",
"yiisoft/yii2-redis": "~2.1.0",
"yiisoft/yii2-debug": "~2.1.0",
"yiisoft/yii2-gii": "~2.2.0",
"yiisoft/yii2-coding-standards": "^3.0",
"php-amqplib/php-amqplib": "^3.0.0",
"enqueue/amqp-lib": "^0.10.0",
"enqueue/amqp-bunny": "^0.10.0",
"enqueue/amqp-ext": "^0.10.8",
"enqueue/stomp": "^0.10.0",
"pda/pheanstalk": "^8.0.0",
"aws/aws-sdk-php": "^3.369.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0"
},
"suggest": {
"ext-pcntl": "Need for process signals.",
"yiisoft/yii2-redis": "Need for Redis queue.",
"pda/pheanstalk": "Need for Beanstalk queue.",
"php-amqplib/php-amqplib": "Need for AMQP queue.",
"enqueue/amqp-lib": "Need for AMQP interop queue.",
"ext-gearman": "Need for Gearman queue.",
"aws/aws-sdk-php": "Need for aws SQS.",
"enqueue/stomp": "Need for Stomp queue."
},
"autoload": {
"psr-4": {
"yii\\queue\\": "src",
"yii\\queue\\amqp_interop\\": "src/drivers/amqp_interop",
"yii\\queue\\beanstalk\\": "src/drivers/beanstalk",
"yii\\queue\\db\\": "src/drivers/db",
"yii\\queue\\file\\": "src/drivers/file",
"yii\\queue\\gearman\\": "src/drivers/gearman",
"yii\\queue\\redis\\": "src/drivers/redis",
"yii\\queue\\sync\\": "src/drivers/sync",
"yii\\queue\\sqs\\": "src/drivers/sqs",
"yii\\queue\\stomp\\": "src/drivers/stomp"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"cs": "./vendor/bin/phpcs",
"cs-fix": "./vendor/bin/phpcbf",
"static": "./vendor/bin/phpstan --memory-limit=-1",
"tests": "./make test"
}
}