This repository has been archived by the owner on Dec 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
98 lines (98 loc) · 3.02 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "bentools/mercure-php-hub",
"type": "project",
"description": "A PHP Implementation of the Mercure Hub protocol.",
"authors": [{
"name": "Beno!t POLASZEK",
"email": "[email protected]"
}],
"license": "GPL-3.0-only",
"autoload": {
"psr-4": {
"BenTools\\MercurePHP\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"BenTools\\MercurePHP\\Tests\\": "tests"
},
"files": [
"tests/Helpers.php"
]
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcntl": "*",
"bentools/psr7-request-matcher": "^1.1",
"bentools/querystring": "^1.0",
"clue/block-react": "^1.4",
"clue/redis-react": "^2.4",
"lcobucci/jwt": "3.3.*",
"predis/predis": "^1.1",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.1",
"ramsey/uuid": "^4.0",
"react/http": "^1.0.0",
"rize/uri-template": "^0.3.2",
"symfony/console": "^5.2",
"symfony/dotenv": "^5.2",
"symfony/flex": "^1.11.0",
"symfony/framework-bundle": "^5.2",
"symfony/string": "^5.2",
"symfony/yaml": "^5.2"
},
"require-dev": {
"ext-dom": "*",
"bentools/cartesian-product": "^1.3.1",
"bentools/iterable-functions": "^1.4",
"bentools/shh": "^1.0",
"clue/reactphp-eventsource": "dev-master#e356b73fbf54a491c37d6b571ee5245206cbdc27",
"friendsofphp/php-cs-fixer": "^2.16",
"pestphp/pest": "^0.3.19",
"phpstan/phpstan": "^0.12.25",
"phpunit/phpunit": "^9.0",
"ringcentral/psr7": "^1.3",
"squizlabs/php_codesniffer": "^3.5",
"symfony/http-client": "^5.2",
"symfony/process": "^5.2",
"symfony/var-dumper": "^5.2"
},
"config": {
"sort-packages": true
},
"scripts": {
"tests:run": "vendor/bin/pest",
"tests:unit:run": "vendor/bin/pest --testsuite=Unit",
"tests:unit:run:with-coverage": "vendor/bin/pest --testsuite=Unit --coverage-clover=coverage.xml --whitelist=src",
"tests:integration:run": "vendor/bin/pest --testsuite=Integration",
"phpcs:check": "vendor/bin/phpcs --standard=PSR12 -n bin src tests --ignore=tests/bootstrap.php",
"phpcs:fix": "vendor/bin/phpcbf --standard=PSR12 -n bin src tests",
"phpstan:analyze": "vendor/bin/phpstan analyze --level 5 src",
"ci:check": [
"@phpcs:check",
"@phpstan:analyze",
"@tests:integration:run",
"@tests:unit:run"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"keywords": [
"mercure",
"pubsub",
"publish",
"subscribe",
"SSE",
"server-sent events",
"http",
"reactphp",
"async"
]
}