-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.82 KB
/
composer.json
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
{
"name": "windwalker/queue",
"type": "windwalker-package",
"description": "Windwalker Queue package",
"keywords": [
"windwalker",
"framework",
"queue"
],
"homepage": "https://github.com/windwalker-io/queue",
"license": "MIT",
"require": {
"php": ">=8.2.0",
"windwalker/utilities": "^4.0",
"windwalker/event": "^4.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0||^9.0||^10.0",
"windwalker/test": "^4.0",
"windwalker/data": "^4.0",
"windwalker/database": "^4.0",
"asika/sql-splitter": "^1.0",
"jdorn/sql-formatter": "^1.2",
"laravel/serializable-closure": "^1.0"
},
"suggest": {
"aws/aws-sdk-php": "If you want to use AWS SQS as queue service.",
"iron-io/iron_mq": "If you want to use Iron.io as queue service.",
"php-amqplib/php-amqplib": "If you want to use RabbitMQ as queue service.",
"pda/pheanstalk": "If you want to use Beanstalkd queue as service.",
"chrisboulton/php-resque": "Install <= 1.2 if you want to use PHP Resque (Redis) as queue service.",
"laravel/serializable-closure": "Install ^1.0 to support Closure jobs."
},
"minimum-stability": "beta",
"autoload": {
"psr-4": {
"Windwalker\\Queue\\": "src/"
},
"files": [
"src/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Windwalker\\Queue\\Test\\": "test/"
}
},
"extra": {
"windwalker": {
"packages": [
"Windwalker\\Queue\\QueuePackage"
]
},
"branch-alias": {
"dev-master": "4.x-dev"
}
},
"config": {
"platform": {
"php": "8.2.0"
}
}
}