-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
59 lines (59 loc) · 1.59 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
{
"name": "spiral/roadrunner-cli",
"type": "library",
"description": "RoadRunner: Command Line Interface",
"license": "MIT",
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "[email protected]"
},
{
"name": "RoadRunner Community",
"homepage": "https://github.com/spiral/roadrunner/graphs/contributors"
}
],
"bin": [
"bin/rr"
],
"homepage": "https://roadrunner.dev",
"support": {
"docs": "https://docs.roadrunner.dev",
"issues": "https://github.com/roadrunner-server/roadrunner/issues",
"forum": "https://forum.roadrunner.dev/",
"chat": "https://discord.gg/V6EK4he"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"composer/semver": "^3.2",
"spiral/roadrunner-worker": ">=2.0.2",
"spiral/tokenizer": "^2.13 || ^3.0",
"symfony/console": "^5.3 || ^6.0 || ^7.0",
"symfony/http-client": "^4.4.11 || ^5.0 || ^6.0 || ^7.0",
"symfony/polyfill-php80": "^1.22",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"jetbrains/phpstorm-attributes": "^1.0",
"vimeo/psalm": "^5.17"
},
"scripts": {
"analyze": "psalm"
},
"autoload": {
"psr-4": {
"Spiral\\RoadRunner\\Console\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}