forked from Baldinof/roadrunner-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.63 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
{
"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",
"Tests\\Baldinof\\RoadRunnerBundle\\": "tests"
}
},
"require": {
"php": ">=7.4",
"symfony/config": "^4.4 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
"symfony/yaml": "^4.4 || ^5.0 || ^6.0",
"spiral/roadrunner": "^2.0.2",
"spiral/roadrunner-worker": ">=2.0.3",
"spiral/goridge": "^3.0",
"symfony/psr-http-message-bridge": "^1.1 || ^2.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"suggest": {
"nyholm/psr7": "For a super lightweight PSR-7/17 implementation",
"symfony/proxy-manager-bridge": "For doctrine re-connection implementation"
},
"require-dev": {
"symfony/var-dumper": "^4.0 || ^5.0 || ^6.0",
"phpunit/phpunit": "^9.5",
"phpspec/prophecy": "^1.11",
"phpspec/prophecy-phpunit": "^2.0",
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.2",
"sentry/sentry-symfony": "^4.0",
"symfony/framework-bundle": "^4.0 || ^5.0 || ^6.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": "^4.0 || ^5.0 || ^6.0",
"spiral/roadrunner-metrics": "^2.0.1",
"mikey179/vfsstream": "^1.6.8",
"pestphp/pest-plugin-expectations": "^1.0",
"symfony/runtime": "^5.3.0 || ^6.0",
"laminas/laminas-zendframework-bridge": "^1.4"
},
"conflict": {
"doctrine/doctrine-bundle": "<2.1.1",
"sentry/sentry-symfony": "<4.0.0",
"spiral/roadrunner-metrics": "<2.0.1"
},
"scripts": {
"test": "phpunit --testdox --colors=always",
"phpstan": "phpstan analyse --no-progress --ansi",
"cs:lint": "php-cs-fixer fix --dry-run --diff --ansi --allow-risky=yes",
"cs:fix": "php-cs-fixer fix --ansi --allow-risky=yes",
"ci": [
"@test", "@phpstan", "@cs:lint"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/runtime": true
}
}
}