forked from roadrunner-php/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.21 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "spiral/roadrunner-cli",
"type": "library",
"description": "RoadRunner: Command Line Interface",
"license": "MIT",
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "wolfy-j@spiralscout.com"
},
{
"name": "RoadRunner Community",
"homepage": "https://github.com/spiral/roadrunner/graphs/contributors"
}
],
"bin": [
"bin/rr"
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"composer/semver": "^3.2",
"spiral/roadrunner-worker": ">=2.0.2",
"symfony/console": "^6.0",
"symfony/http-client": "^6.0",
"symfony/polyfill-php80": "^1.22"
},
"require-dev": {
"jetbrains/phpstorm-attributes": "^1.0",
"symfony/var-dumper": "^6.0",
"vimeo/psalm": "^4.4"
},
"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
}