-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
43 lines (43 loc) · 1.1 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
{
"name": "stomp-php/stomp-bundle",
"type": "symfony-bundle",
"description": "Integrates stomp-php support for symfony applications.",
"homepage": "http://github.com/stomp-php/stomp-bundle",
"license": "GPL-3.0+",
"authors": [
{
"name": "Jens Radtke",
"email": "[email protected]",
"homepage": "http://www.fin-sn.de"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.1",
"stomp-php/stomp-php": "^4.4",
"symfony/config": "^3.4|^4.0",
"symfony/console": "^3.4|^4.0",
"symfony/dependency-injection": "^3.4|^4.0",
"symfony/http-kernel": "^3.4|^4.0",
"symfony/yaml": "^3.4|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^6|^7",
"symfony/debug": "^3.4|^4.0"
},
"autoload": {
"psr-4": {
"StompPhp\\StompBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"StompPhp\\StompBundle\\Tests\\": "Tests/"
}
}
}