-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.57 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.57 KB
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
{
"name": "bckp/roadrunner",
"type": "library",
"description": "Integration of Nette Framework into RoadRunner",
"keywords": [
"nette",
"roadrunner"
],
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Radovan Kepak",
"email": "radovan@kepakovi.cz",
"homepage": "https://www.kepakovi.cz"
}
],
"require": {
"php": ">=8 <8.3",
"nette/application": "^3.0.7",
"nette/di": "^3.0.7",
"nette/http": "^3.0",
"nette/schema": "^1.2",
"nette/utils": "^3.0",
"psr/http-server-middleware": "^1.0",
"spiral/roadrunner-http": "^2.0"
},
"require-dev": {
"nette/bootstrap": "^3.0",
"nette/tester": "^2.4",
"phpstan/phpstan-nette": "^1.0",
"squizlabs/php_codesniffer": "^3.6",
"tracy/tracy": "^2.9",
"vimeo/psalm": "^5.3"
},
"suggest": {
"tracy/tracy": "To set tracyHook and get Tracy blueScreen on exceptions",
"guzzlehttp/psr7": "A implementation of PSR-7",
"nyholm/psr7": "A implementation of PSR-7"
},
"scripts": {
"phpcs": "./vendor/bin/phpcs -p -n --standard=ruleset.xml",
"fix-style": "./vendor/bin/phpcbf -p -n --standard=ruleset.xml",
"phpstan": "phpstan analyse",
"psalm": "psalm",
"tests-unit": "@unit-tests",
"unit-tests": "tester -o console ./tests/unit"
},
"minimum-stability": "stable",
"support": {
"email": "radovan@kepakovi.cz",
"issues": "https://github.com/bckp/roadrunner/issues"
},
"autoload": {
"psr-4": {
"Bckp\\RoadRunner\\": "src/"
}
},
"replace": {
"mallgroup/roadrunner": "*"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"sort-packages": true
}
}