-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
50 lines (50 loc) · 1.22 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
{
"name": "facile-it/crossbar-http-publisher-bundle",
"description": "This bundle allows to submit PubSub events via HTTP/POST requests to a Crossbar HTTP Publisher.",
"minimum-stability": "stable",
"license": "Apache-2.0",
"type": "symfony-bundle",
"keywords": [
"symfony",
"websocket",
"client",
"guzzle",
"publisher",
"crossbar"
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.4",
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.4",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.4",
"symfony/config": "^4.4 || ^5.4 || ^6.4",
"guzzlehttp/guzzle": "^5.0 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"symfony/yaml": "^4.4 || ^5.4 || ^6.4",
"rector/rector": "^1",
"phpspec/prophecy": "^1.18",
"phpspec/prophecy-phpunit": "^2.1"
},
"autoload": {
"psr-4": {
"Facile\\CrossbarHTTPPublisherBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Facile\\CrossbarHTTPPublisherBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "luca bo",
"email": "[email protected]"
},
{
"name": "Alessandro Lai",
"email": "[email protected]"
}
]
}