forked from fabiang/xmpp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.41 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": "hostdime/xmpp",
"description": "Library for XMPP protocol (Jabber) connections",
"license": "BSD-2-Clause",
"homepage": "https://github.com/hostdime/xmpp",
"keywords": ["jabber", "xmpp"],
"authors": [
{
"name": "Fabian Grutschus",
"email": "[email protected]",
"homepage": "http://www.lubyte.de/",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"Fabiang\\Xmpp\\": "src/"
}
},
"autoload-dev": {
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
],
"psr-4": {
"Fabiang\\Xmpp\\": "tests/src/"
}
},
"require": {
"php": ">=5.3.3",
"psr/log": "~1.0"
},
"require-dev": {
"monolog/monolog": "~1.11",
"phpunit/phpunit": "~4.3",
"behat/behat": "~2.5",
"satooshi/php-coveralls": "~0.6"
},
"suggest": {
"psr/log-implementation": "Allows more advanced logging of the xmpp connection"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"archive": {
"exclude": [
".gitignore",
".gitattributes",
".scrutinizer.yml",
".travis.yml",
"/tests",
"/docs",
"/bin",
"/example.php"
]
}
}