-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "kraken-collective/ws-symfony-bundle",
"type": "symfony-bundle",
"description": "Symfony Websocket Bundle",
"keywords": ["websocket", "kraken", "symfony", "bundle"],
"homepage": "https://github.com/kraken-collective/ws-symfony",
"license": "MIT",
"authors": [
{
"name": "Kamil Jamróz"
},
{
"name": "Michał Kurzeja",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5.9 || ^7.0",
"symfony/framework-bundle": "^3.0",
"symfony/console": "^3.0",
"symfony/security-bundle": "^3.0",
"kraken-php/network": "^0.3.2"
},
"require-dev": {
"symfony/phpunit-bridge": "^2.7 || ^3.0",
"phpunit/phpunit": "~4.8|~5.0"
},
"suggest": {
"snc/redis-bundle": "Provides an alternative SessionHandler (native session handlers won't work with this bundle)."
},
"autoload": {
"psr-4": {
"KrakenCollective\\WsSymfonyBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"KrakenCollective\\WsSymfonyBundle\\Tests\\": "Tests/"
}
}
}