forked from Baldinof/roadrunner-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 2.33 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
{
"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.3",
"symfony/config": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/yaml": "^4.4 || ^5.0",
"spiral/roadrunner": "^1.5",
"spiral/goridge": "^2.0.2",
"symfony/psr-http-message-bridge": "^1.1 || ^2.0",
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"dflydev/fig-cookies": "^3.0",
"php-http/discovery": "^1.9",
"psr/http-factory-implementation": "1.0.0",
"psr/log": "^1.1",
"jean85/pretty-package-versions": "^1.5 || ^2.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",
"phpunit/phpunit": "^9.1",
"phpspec/prophecy": "^1.11",
"phpspec/prophecy-phpunit": "^2.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.2",
"sentry/sentry-symfony": "^3.4||^4.0",
"symfony/framework-bundle": "^4.0||^5.0",
"nyholm/psr7": "^1.2",
"doctrine/mongodb-odm": "^2.2",
"blackfire/php-sdk": "^1.21",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.7.3",
"symfony/proxy-manager-bridge": "^4.0 || ^5.0",
"ocramius/package-versions": "^1.10 || ^2.0"
},
"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"
]
}
}