Skip to content

Commit 4f8f7fd

Browse files
authored
[RoadRunner] Add support for RoadRunner 2023 and 2024 (#172)
This pull request adds support for RoadRunner **2023** and **2024**. The required PHP packages have been added to the dependencies. With the old version of RoadRunner (2.x), need to explicitly install it (composer req spiral/roadrunner:^2.0 -W), which will install older versions of **spiral/roadrunner-http** (v2.2.0) and **spiral/roadrunner-worker**(v2.3.0).
1 parent 1e2e2db commit 4f8f7fd

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

composer.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,17 @@
1212
"require": {
1313
"php": ">=8.0.5",
1414
"nyholm/psr7": "^1.4",
15-
"spiral/roadrunner": "^2.0",
15+
"spiral/roadrunner-cli": "^2.6",
16+
"spiral/roadrunner-http": "^2.0 || ^3.0",
17+
"spiral/roadrunner-worker": "^2.0 || ^3.0",
1618
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
1719
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
1820
"symfony/psr-http-message-bridge": "^2.1 || ^6.4 || ^7.0",
1921
"symfony/runtime": "^5.4 || ^6.0 || ^7.0"
2022
},
2123
"require-dev": {
22-
"phpunit/phpunit": "^9.5"
24+
"phpunit/phpunit": "^9.5",
25+
"symfony/console": "^5.4 || ^6.4 || ^7.0"
2326
},
2427
"minimum-stability": "dev",
2528
"prefer-stable": true,

0 commit comments

Comments
 (0)