forked from Littlesqx/aint-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.18 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.18 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
{
"name": "littlesqx/aint-queue",
"description": "A async-queue library built on top of swoole, flexable multi-consumer, coroutine supported.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "littlesqx",
"email": "littlesqx@gmail.com"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-swoole": ">=4.4",
"predis/predis": "^1.1",
"psr/log": "^1.1",
"jeremeamia/superclosure": "^2.4",
"symfony/console": "^4.4 | ^5.0",
"illuminate/pipeline": "^6.16",
"monolog/monolog": "^2.0"
},
"autoload": {
"psr-4": {
"Littlesqx\\AintQueue\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"suggest": {
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"swoole/ide-helper": "@dev"
},
"scripts": {
"test": "./vendor/bin/phpunit --colors=always"
},
"bin": [
"bin/aint-queue"
],
"config": {
"optimize-autoloader": true
},
"archive": {
"exclude": ["/example"]
}
}