-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
composer.json
80 lines (80 loc) · 2.74 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "baldinof/roadrunner-bundle",
"type": "symfony-bundle",
"description": "A RoadRunner worker as a Symfony Bundle",
"license": "MIT",
"authors": [
{
"name": "Florent Baldino",
"email": "[email protected]"
}
],
"autoload": {
"files": ["src/functions.php"],
"psr-4": {
"Baldinof\\RoadRunnerBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Baldinof\\RoadRunnerBundle\\": "tests"
}
},
"require": {
"php": ">=8.1",
"symfony/config": "^6.0 || ^7.0",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/http-kernel": "^6.0 || ^7.0",
"symfony/yaml": "^6.0 || ^7.0",
"spiral/roadrunner": "^2023.1.0 || ^2024.1.0",
"spiral/roadrunner-worker": "^3.0.0",
"spiral/goridge": "^4.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"spiral/roadrunner-http": "^3.0"
},
"suggest": {
"nyholm/psr7": "For a super lightweight PSR-7/17 implementation",
"spiral/roadrunner-cli": "For easy installation of RoadRunner",
"symfony/proxy-manager-bridge": "For doctrine re-connection implementation"
},
"require-dev": {
"symfony/var-dumper": "^6.0 || ^7.0",
"sentry/sentry-symfony": "^4.5 || ^5.0",
"symfony/framework-bundle": "^6.0 || ^7.0",
"nyholm/psr7": "^1.2",
"doctrine/mongodb-odm": "^2.2",
"blackfire/php-sdk": "^1.21",
"doctrine/doctrine-bundle": "^2.1.1",
"doctrine/orm": "^2.7.3",
"symfony/proxy-manager-bridge": "^6.0 || ^7.0",
"symfony/validator": "^6.0 || ^7.0",
"spiral/roadrunner-metrics": "^3.0.0",
"mikey179/vfsstream": "^1.6.8",
"symfony/runtime": "^6.0 || ^7.0",
"symfony/var-exporter": "^6.0 || ^7.0",
"laminas/laminas-zendframework-bridge": "^1.4",
"spiral/roadrunner-grpc": "^3.0.0",
"spiral/roadrunner-kv": "^4.0"
},
"conflict": {
"doctrine/doctrine-bundle": "<2.1.1",
"sentry/sentry-symfony": "<4.5.0",
"spiral/roadrunner-metrics": "<3.0.0"
},
"scripts": {
"test": "tools/vendor/bin/phpunit --testdox --colors=always",
"phpstan": "tools/vendor/bin/phpstan analyse --no-progress --ansi",
"cs:lint": "tools/vendor/bin/php-cs-fixer fix --dry-run --diff --ansi --allow-risky=yes",
"cs:fix": "tools/vendor/bin/php-cs-fixer fix --ansi --allow-risky=yes",
"ci": [
"@test", "@phpstan", "@cs:lint"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/runtime": true,
"php-http/discovery": true
}
}
}