forked from Vinelab/minion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.02 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
{
"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.0.1",
"illuminate/support": "^5.5",
"illuminate/console": "^5.5",
"thruway/client": "^0.5.3",
"thruway/pawl-transport": "^0.5.0"
},
"require-dev": {
"phpunit/phpunit": "^6",
"mockery/mockery": "0.9.*",
"squizlabs/php_codesniffer": "^3.2",
"friendsofphp/php-cs-fixer": "^2.11"
},
"autoload": {
"psr-0": {
"Vinelab\\Minion": "src/"
},
"classmap": [
"tests/UnitTestCase.php",
"Examples/basic"
]
},
"bin": ["minion"],
"minimum-stability": "stable"
}