-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
123 lines (123 loc) · 3.58 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "freddie/mercure-x",
"type": "project",
"description": "A Mercure Hub PHP implementation.",
"license": "GPL-3.0-only",
"authors": [{
"name": "Beno!t POLASZEK",
"email": "bpolaszek@gmail.com"
}],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"bentools/querystring": "^1.1",
"clue/framework-x": "dev-main#cfe017426d8acc7a92b5893a501728e034a873cc",
"clue/redis-react": "^2.5",
"doctrine/annotations": "^1.0",
"lcobucci/jwt": "^4.1",
"nyholm/dsn": "^2.0",
"phpdocumentor/reflection-docblock": "^5.3",
"react/async": "^4.0.0",
"react/promise-timer": "^1.10",
"rize/uri-template": "^0.3.4",
"symfony/console": "^5.4.0|^6.0.0|^7.0.0",
"symfony/deprecation-contracts": "^3.1",
"symfony/dotenv": "^5.4.0|^6.0.0|^7.0.0",
"symfony/flex": "^1.17|^2",
"symfony/framework-bundle": "^5.4.0|^6.0.0|^7.0.0",
"symfony/options-resolver": "^5.4.0|^6.0.0|^7.0.0",
"symfony/property-access": "^5.4.0|^6.0.0|^7.0.0",
"symfony/property-info": "^5.4.0|^6.0.0|^7.0.0",
"symfony/runtime": "^5.4.0|^6.0.0|^7.0.0",
"symfony/serializer": "^5.4.0|^6.0.0|^7.0.0",
"symfony/uid": "^5.4.0|^6.0.0|^7.0.0",
"symfony/yaml": "^5.4.0|^6.0.0|^7.0.0"
},
"require-dev": {
"clue/reactphp-eventsource": "^1.0.0",
"pestphp/pest": "^1.21",
"phpstan/phpstan": "^1.2",
"react/child-process": "^0.6.4",
"ringcentral/psr7": "^1.3",
"squizlabs/php_codesniffer": "^3.6",
"symfony/http-client": "^5.4.0|^6.0.0|^7.0.0",
"symfony/process": "^5.4.0|^6.0.0|^7.0.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"symfony/flex": true,
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"Freddie\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Freddie\\Tests\\": "tests"
}
},
"bin": ["bin/freddie"],
"scripts": {
"post-install-cmd": [
"bin/freddie cache:clear"
],
"post-update-cmd": [
"bin/freddie cache:clear"
],
"phpstan:analyze": "vendor/bin/phpstan analyse",
"linter:check": "vendor/bin/phpcs",
"linter:fix": "vendor/bin/phpcbf",
"tests:unit:run": "vendor/bin/pest --testsuite='Unit tests'",
"tests:integration:run": "vendor/bin/pest --testsuite='Integration tests'",
"tests:run": [
"@tests:integration:run",
"@tests:unit:run"
],
"tests:run:with-coverage": [
"@tests:integration:run",
"@tests:unit:run --coverage --min=100"
],
"ci:check": [
"composer validate",
"@linter:check",
"@phpstan:analyze",
"@tests:run:with-coverage"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false
}
},
"keywords": [
"mercure",
"pubsub",
"publish",
"subscribe",
"SSE",
"server-sent events",
"http",
"react",
"reactphp",
"async",
"framework x"
]
}