This repository has been archived by the owner on Jan 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 83
/
composer.json
67 lines (67 loc) · 1.64 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
59
60
61
62
63
64
65
66
67
{
"name": "fabiang/xmpp",
"description": "Library for XMPP protocol (Jabber) connections",
"license": "BSD-2-Clause",
"homepage": "https://github.com/fabiang/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.6 || ^7.0",
"psr/log": "^1.0"
},
"require-dev": {
"behat/behat": "^2.5.5",
"monolog/monolog": "^1.22",
"phpunit/phpunit": "^5.7.20",
"satooshi/php-coveralls": "^1.0",
"symfony/console": "^2.8",
"symfony/dependency-injection": "^2.8",
"symfony/finder": "^2.8"
},
"suggest": {
"psr/log-implementation": "Allows more advanced logging of the xmpp connection"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"platform": {
"php": "5.6"
},
"sort-packages": true
},
"archive": {
"exclude": [
".gitignore",
".gitattributes",
".scrutinizer.yml",
".travis.yml",
"/tests",
"/docs",
"/bin",
"/example.php"
]
}
}