-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
39 lines (39 loc) · 902 Bytes
/
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
{
"name": "kadet/nucleus",
"type": "library",
"description": "Asynchronous XMPP Library for PHP",
"keywords": ["xmpp", "async", "react", "jabber", "im"],
"require": {
"php": ">=7.0",
"react/stream": "^0.4.3",
"react/event-loop": "^0.4",
"react/promise": "2.4.*",
"evenement/evenement": "2.0.*",
"psr/log": "1.0.*",
"kadet/keylighter": "^0.8",
"fabiang/sasl": "^1.0",
"php-di/php-di": "^5.3"
},
"require-dev": {
"bramus/monolog-colored-line-formatter": "~2.0",
"monolog/monolog": "^1.20",
"phpunit/phpunit": ">=5.4 <6.0.0",
"php-mock/php-mock-phpunit": "1.1.*",
"evert/phpdoc-md": "0.2.*"
},
"license": "MIT",
"authors": [
{
"name": "Kacper Donat",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Kadet\\Xmpp\\": "."
},
"files": [
"Utils/functions.php"
]
}
}