-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathcomposer.json
56 lines (56 loc) · 1.65 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
{
"name": "symfony/mercure",
"type": "library",
"description": "Symfony Mercure Component",
"keywords": ["mercure", "push", "sse", "updates"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "dunglas@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": ">=7.1.3",
"symfony/http-client": "^4.4|^5.0|^6.0|^7.0",
"symfony/http-foundation": "^4.4|^5.0|^6.0|^7.0",
"symfony/web-link": "^4.4|^5.0|^6.0|^7.0",
"symfony/deprecation-contracts": "^2.0|^3.0|^4.0",
"symfony/polyfill-php80": "^1.22"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Mercure\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Symfony\\Component\\Mercure\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-main": "0.6.x-dev"
},
"thanks": {
"name": "dunglas/mercure",
"url": "https://github.com/dunglas/mercure"
}
},
"config": {
"sort-packages": true
},
"suggest": {
"symfony/stopwatch": "Integration with the profiler performances"
},
"require-dev": {
"lcobucci/jwt": "^3.4|^4.0|^5.0",
"symfony/event-dispatcher": "^4.4|^5.0|^6.0|^7.0",
"symfony/http-kernel": "^4.4|^5.0|^6.0|^7.0",
"symfony/phpunit-bridge": "^5.2|^6.0|^7.0",
"symfony/stopwatch": "^4.4|^5.0|^6.0|^7.0",
"twig/twig": "^2.0|^3.0|^4.0"
},
"minimum-stability": "dev"
}