-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
165 lines (165 loc) · 5.5 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "pixelfederation/swoole-bundle",
"type": "library",
"description": "Swoole Symfony Bundle",
"keywords": [
"PHP",
"Bundle",
"Swoole",
"Async",
"HTTP",
"Server"
],
"license": "MIT",
"homepage": "https://github.com/pixelfederation/swoole-bundle",
"authors": [
{
"name": "Konrad Obal",
"email": "konrad.obal@gmail.com",
"homepage": "https://github.com/k911"
},
{
"name": "Martin Fris",
"email": "mfris@pixelfederation.com",
"homepage": "https://github.com/Rastusik"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-openswoole": "^4.10.0",
"beberlei/assert": "^3.3",
"laminas/laminas-code": "^4.7||^4.8",
"symfony/cache": "^5.4|^6.0",
"symfony/config": "^5.4|^6.0",
"symfony/console": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/filesystem": "^5.4|^6.0",
"symfony/http-foundation": "^5.4|^6.0",
"symfony/http-kernel": "^5.4|^6.0",
"symfony/process": "^5.4|^6.0",
"symfony/proxy-manager-bridge": "^5.4|^6.0"
},
"require-dev": {
"ext-ffi": "^8.0",
"blackfire/php-sdk": "^1.30",
"doctrine/annotations": "^1.13",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.11",
"friendsofphp/php-cs-fixer": "^3.7",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy": "^1.17",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.0.2",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-beberlei-assert": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/php-code-coverage": "^9.1.0",
"phpunit/phpcov": "^8.0",
"phpunit/phpunit": "^9.5",
"pixelfederation/doctrine-resettable-em-bundle": "^7.0",
"pixelfederation/z-engine": "~8.0|~8.1|~8.2",
"ramsey/uuid": "^4.1",
"swoole/ide-helper": "^4.8",
"symfony/debug-pack": "^1.0",
"symfony/doctrine-messenger": "^5.4|^6.0",
"symfony/error-handler": "^5.4|^6.0",
"symfony/framework-bundle": "^5.4|^6.0",
"symfony/messenger": "^5.4|^6.0",
"symfony/monolog-bridge": "^5.4|^6.0",
"symfony/monolog-bundle": "^3.3",
"symfony/profiler-pack": "^1.0",
"symfony/twig-bundle": "^5.4|^6.0",
"symfony/var-dumper": "^5.4|^6.0",
"symfony/yaml": "^5.4|^6.0",
"tideways/ext-tideways-stubs": "^5.5",
"upscale/swoole-blackfire": "^4.0"
},
"suggest": {
"ext-inotify": "To enable HMR",
"doctrine/orm": "For using Entity Manager Handler",
"symfony/messenger": "For using Symfony Messenger Swoole Task Transport.",
"upscale/swoole-blackfire": "To enable Blackfire profiling",
"pixelfederation/doctrine-resettable-em-bundle": "To be able to recover Doctrine Entity Managers from errors",
"symfony/error-handler": "To use Symfony Error Handler",
"lisachenko/z-engine": "To be able to use coroutines."
},
"autoload": {
"files": [
"src/functions_include.php"
],
"psr-4": {
"K911\\Swoole\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"K911\\Swoole\\Tests\\": "tests"
},
"files": [
"tests/Bridge/Tideways/TidewaysMock.php"
]
},
"scripts": {
"console": [
"php tests/Fixtures/Symfony/app/console --ansi"
],
"static-analyse-src": [
"phpstan analyze src -l 7 -c phpstan.neon.dist --ansi --memory-limit=512M"
],
"static-analyse-tests": [
"phpstan analyze tests -l 4 -c phpstan.tests.neon --ansi --memory-limit=512M"
],
"cs-analyse": [
"php-cs-fixer fix -v --dry-run --diff --stop-on-violation --ansi"
],
"analyse": [
"@static-analyse-src",
"@static-analyse-tests",
"@cs-analyse"
],
"test": [
"@analyse",
"@unit-tests"
],
"feature-tests": [
"phpunit tests/Feature --process-isolation --colors=always"
],
"feature-tests-junit": [
"phpunit tests/Feature --process-isolation --colors=always --log-junit phpunit/junit.xml"
],
"unit-code-coverage": [
"phpunit tests/Unit --coverage-php cov/unit-tests.cov --colors=always"
],
"feature-code-coverage": [
"COVERAGE=1 phpunit tests/Feature --coverage-php cov/feature-tests.cov --colors=always --process-isolation"
],
"merge-code-coverage": [
"php -dmemory_limit=512M ./vendor/bin/phpcov merge cov --clover=cov/clover.xml"
],
"fix": "php-cs-fixer fix -v --ansi",
"unit-tests": [
"phpunit tests/Unit --colors=always"
],
"unit-tests-junit": [
"phpunit tests/Unit --colors=always --log-junit phpunit/junit.xml"
]
},
"extra": {
"branch-alias": {
"dev-develop": "v0.8.x-dev"
}
},
"config": {
"process-timeout": 1200,
"sort-packages": true,
"platform": {
"ext-openswoole": "4.10.00"
},
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}