-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
63 lines (63 loc) · 1.81 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
{
"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",
"chat": "https://discord.gg/V6EK4he"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/roadrunner-server"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"composer/semver": "^3.4",
"spiral/roadrunner-worker": "^2 || ^3",
"spiral/tokenizer": "^2.13 || ^3.15",
"symfony/console": "^5.3 || ^6.0 || ^7.0",
"symfony/http-client": "^4.4.51 || ^5.4.49 || ^6.4.17 || ^7.2",
"symfony/yaml": "^5.4.49 || ^6.4.17 || ^7.2"
},
"require-dev": {
"jetbrains/phpstorm-attributes": "^1.2",
"spiral/code-style": "^2.2.2",
"spiral/dumper": "^3.3",
"vimeo/psalm": "^6.0"
},
"autoload": {
"psr-4": {
"Spiral\\RoadRunner\\Console\\": "src"
}
},
"scripts": {
"cs:diff": "php-cs-fixer fix --dry-run -v --diff --show-progress dots",
"cs:fix": "php-cs-fixer fix -v",
"psalm": "psalm",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}