-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
58 lines (58 loc) · 1.42 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
{
"name": "valga/fbns-react",
"description": "A PHP client for the FBNS built on top of ReactPHP",
"keywords": [
"FBNS",
"Client",
"PHP"
],
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Abyr Valg",
"email": "[email protected]"
}
],
"bin": [
"bin/thrift_debug"
],
"autoload": {
"psr-4": {
"Fbns\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fbns\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.2",
"ext-json": "*",
"ext-mbstring": "*",
"ext-zlib": "*",
"evenement/evenement": "~2.0|~3.0",
"react/event-loop": "^1.1",
"react/promise": "^2.7",
"react/socket": "^1.3",
"binsoul/net-mqtt": "^0.8",
"psr/log": "~1.0",
"binsoul/net-mqtt-client-react": "^0.7.2",
"ramsey/uuid": "^3.9 | ^4.0"
},
"require-dev": {
"monolog/monolog": "~1.23",
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.5.2"
},
"suggest": {
"ext-event": "For more efficient event loop implementation.",
"ext-gmp": "To be able to run this code on x86 PHP builds."
},
"scripts": {
"codestyle": "php-cs-fixer fix --config=.php_cs",
"test": "phpunit tests"
}
}