-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
64 lines (64 loc) · 1.89 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
{
"name": "eole/sandstone",
"license": "MIT",
"type": "library",
"description": "Silex RestApi with Websockets.",
"homepage": "https://eole-io.github.io/sandstone/",
"keywords": ["php", "symfony", "silex", "websocket", "push", "reactphp"],
"authors": [
{
"name": "Julien Maulny",
"email": "[email protected]"
}
],
"minimum-stability" : "dev",
"prefer-stable" : true,
"require": {
"php": ">=5.6",
"ext-zmq": "*",
"psr/log": "~1.0",
"react/zmq": "0.2.*|0.3.*",
"cboden/ratchet": "0.4.*",
"league/oauth2-server": "6.*",
"symfony/event-dispatcher": "~3.0|~4.0",
"symfony/security": "~2.8|~3.0|~4.0",
"symfony/yaml": "~2.8|~3.0|~4.0",
"symfony/http-kernel": "~2.8|~3.0|~4.0",
"symfony/http-foundation": "~2.8|~3.0|~4.0",
"symfony/routing": "~2.8|~3.0|~4.0",
"alcalyn/authorization-header-fix": "~1.0.0",
"jms/serializer": "^1.4",
"alcalyn/serializer-doctrine-proxies": "~1.1.0",
"pimple/pimple": "~3.0",
"silex/silex": "~2.0"
},
"require-dev": {
"ekho/zmq-phpdoc": "1.0",
"phpunit/phpunit": "4.x|5.x",
"silex/web-profiler": "2.x",
"squizlabs/php_codesniffer": "2.x"
},
"repositories": [
{
"type": "package",
"package": {
"name": "ekho/zmq-phpdoc",
"version": "1.0",
"dist": {
"url": "https://raw.githubusercontent.com/ekho/zmq-phpdoc/master/zmq.php",
"type": "file"
}
}
}
],
"autoload": {
"psr-4": {
"Eole\\Sandstone\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Eole\\Sandstone\\Tests\\": "tests"
}
}
}