-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
46 lines (46 loc) · 1.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
{
"name": "vinelab/minion",
"description": "A Simple WAMP (Web Application Messaging Protocol) server and command line tool",
"keywords" :["wamp", "laravel", "thruway", "symfony", "minion", "wampws", "websocket", "realtime", "real-time"],
"license": "MIT",
"authors": [
{
"name": "Abed Halawi",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"illuminate/support": "^5.5|^6.0|^7.0",
"illuminate/console": "^5.5|^6.0|^7.0",
"thruway/client": "^0.5",
"thruway/pawl-transport": "^0.5"
},
"require-dev": {
"phpunit/phpunit": "^7|^8|^9",
"mockery/mockery": "0.9.*|^1.0",
"squizlabs/php_codesniffer": "^3.2",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-0": {
"Vinelab\\Minion": "src/"
},
"classmap": [
"tests/UnitTestCase.php",
"Examples/basic"
]
},
"extra": {
"laravel": {
"providers": [
"Vinelab\\Minion\\MinionServiceProvider"
],
"aliases": {
"Minion": "Vinelab\\Minion\\Facade\\Minion"
}
}
},
"bin": ["minion"],
"minimum-stability": "stable"
}