-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
78 lines (78 loc) · 2.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "katsana/minions",
"description": "JSON-RPC Communication for Laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "KATSANA Developer",
"email": "[email protected]"
},
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Minions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Minions\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"clue/buzz-react": "^2.5",
"datto/json-rpc": "^6.0",
"illuminate/database": "^6.0 || ^7.0 || ^8.0",
"illuminate/pipeline": "^6.0 || ^7.0 || ^8.0",
"illuminate/validation": "^6.0 || ^7.0 || ^8.0",
"laravie/codex-security": "^1.0",
"laravie/stream": "^1.3",
"nyholm/psr7": "^1.2",
"orchestra/canvas-core": "^4.7 || ^5.0 || ^6.0",
"react/event-loop": "^1.1",
"react/promise": "^2.5",
"symfony/psr-http-message-bridge": "^1.3 || ^2.0"
},
"require-dev": {
"clue/block-react": "^1.3",
"clue/mq-react": "^1.2",
"mockery/mockery": "^1.3.1",
"orchestra/canvas": "^4.5 || ^5.0 || ^6.0",
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0"
},
"suggest": {
"clue/block-react": "Allow to use traditional, blocking environment with Minions (^1.3).",
"clue/mq-react": "Allow to limit concurrent JSON-RPC Client requests on Minions (^1.2).",
"katsana/minions-server": "Allow to use ReactPHP as RPC Server (^1.0).",
"katsana/minions-polyfill": "Allow to use Laravel Routing as RPC Server Polyfill (^1.0)."
},
"scripts": {
"test": [
"./vendor/bin/phpunit -c ."
]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
},
"laravel": {
"providers": [
"Minions\\MinionsServiceProvider",
"Minions\\Http\\MinionsServiceProvider"
],
"aliases": {
"Minion": "Minions\\Minion"
}
}
},
"minimum-stability": "dev"
}