-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
58 lines (58 loc) · 2.04 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
{
"name": "m6web/tornado",
"description": "A library for asynchronous programming.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "M6Web",
"email": "[email protected]",
"homepage": "https://tech.bedrockstreaming.com"
}
],
"autoload": {
"psr-4": {"M6Web\\Tornado\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"M6WebTest\\Tornado\\": "tests/",
"M6WebExamples\\Tornado\\": "examples/"
}
},
"require": {
"php": "^7.3|^8.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4.4",
"amphp/amp": "^2.0",
"guzzlehttp/guzzle": "^6.3",
"m6web/php-cs-fixer-config": "^2.0",
"ext-curl": "^7.3|^8.0",
"react/event-loop": "^1.0",
"react/promise": "^2.7",
"phpstan/phpstan": "^0.12",
"symfony/http-client": "^4.3",
"psr/http-factory": "^1.0",
"http-interop/http-factory-guzzle": "^1.0"
},
"suggest": {
"ext-curl": "Required to use Curl and HTTP2 features",
"amphp/amp": "Required to use Tornado\\Adapter\\Amp\\EventLoop",
"react/event-loop": "Required to use Tornado\\Adapter\\ReactPhp\\EventLoop",
"react/promise": "Required to use Tornado\\Adapter\\ReactPhp\\EventLoop",
"guzzlehttp/guzzle": "Required to use Tornado\\Adapter\\Guzzle\\HttpClient",
"symfony/http-client": "Required to use Tornado\\Adapter\\Symfony\\HttpClient",
"psr/http-factory": "Required to use Tornado\\Adapter\\Symfony\\HttpClient"
},
"config": {
"bin-dir": "bin/"
},
"scripts": {
"tests-unit": "./bin/phpunit --testsuite='Tornado Test Suite'",
"tests-examples": "./bin/phpunit --testsuite='Tornado Examples'",
"static-analysis": "./bin/phpstan analyse src tests --level=7 --no-progress -vvv",
"code-style-check": "./bin/php-cs-fixer fix --dry-run --verbose",
"code-style-fix": "./bin/php-cs-fixer fix"
}
}