Skip to content

Commit 6988774

Browse files
authored
Merge branch '4.x' into 4.x
2 parents 80c340a + a9e13c8 commit 6988774

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

.github/workflows/phpunit.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
on:
22
push:
33
branches:
4-
- master
54
- '*.*'
65
pull_request: null
76

@@ -13,7 +12,5 @@ jobs:
1312
with:
1413
os: >-
1514
['ubuntu-latest']
16-
php: >-
17-
['8.1', '8.2']
1815
stability: >-
19-
['prefer-stable']
16+
['prefer-lowest', 'prefer-stable']

.github/workflows/psalm.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
on:
22
push:
33
branches:
4-
- master
54
- '*.*'
65
pull_request: null
76

README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
1+
<a href="https://roadrunner.dev" target="_blank">
2+
<picture>
3+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/roadrunner-server/.github/assets/8040338/e6bde856-4ec6-4a52-bd5b-bfe78736c1ff">
4+
<img align="center" src="https://github.com/roadrunner-server/.github/assets/8040338/040fb694-1dd3-4865-9d29-8e0748c2c8b8">
5+
</picture>
6+
</a>
7+
18
# RoadRunner KV Plugin Bridge
29

310
[![PHP Version Require](https://poser.pugx.org/spiral/roadrunner-kv/require/php)](https://packagist.org/packages/spiral/roadrunner-kv)
411
[![Latest Stable Version](https://poser.pugx.org/spiral/roadrunner-kv/v/stable)](https://packagist.org/packages/spiral/roadrunner-kv)
512
[![phpunit](https://github.com/spiral/roadrunner-kv/actions/workflows/phpunit.yml/badge.svg)](https://github.com/spiral/roadrunner-kv/actions)
613
[![psalm](https://github.com/spiral/roadrunner-kv/actions/workflows/psalm.yml/badge.svg)](https://github.com/spiral/roadrunner-kv/actions)
7-
[![Codecov](https://codecov.io/gh/spiral/roadrunner-kv/branch/master/graph/badge.svg)](https://codecov.io/gh/spiral/roadrunner-kv/)
814
[![Total Downloads](https://poser.pugx.org/spiral/roadrunner-kv/downloads)](https://packagist.org/packages/spiral/roadrunner-kv)
915

10-
<b>[Documentation](https://roadrunner.dev/docs/plugins-kv/2.x/en)</b> | [Framework Bundle](https://github.com/spiral/framework)
16+
<b>[Documentation](https://docs.roadrunner.dev/key-value/overview-kv)</b> | [Framework Bundle](https://github.com/spiral/framework)
1117

1218
This repository contains the codebase PSR-16 PHP cache bridge using kv RoadRunner plugin.
1319

@@ -45,7 +51,7 @@ kv:
4551
4652
> **Note**
4753
> Read more about all available drivers on the
48-
> [documentation](https://roadrunner.dev/docs) page.
54+
> [documentation](https://docs.roadrunner.dev) page.
4955
5056
After starting the server with this configuration, one driver named "`test`"
5157
will be available to you.

composer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
],
3232
"homepage": "https://roadrunner.dev/",
3333
"support": {
34-
"docs": "https://roadrunner.dev/docs",
34+
"docs": "https://docs.roadrunner.dev",
3535
"issues": "https://github.com/roadrunner-server/roadrunner/issues",
3636
"forum": "https://forum.roadrunner.dev/",
3737
"chat": "https://discord.gg/V6EK4he"
@@ -46,10 +46,11 @@
4646
"require": {
4747
"php": ">=8.1",
4848
"ext-json": "*",
49-
"psr/simple-cache": "3",
49+
"psr/simple-cache": "2 - 3",
5050
"roadrunner-php/roadrunner-api-dto": "^1.0",
5151
"spiral/roadrunner": "^2023.1",
5252
"spiral/goridge": "^4.2",
53+
"spiral/roadrunner": "^2023.1 || ^2024.1",
5354
"google/protobuf": "^3.7"
5455
},
5556
"autoload": {

0 commit comments

Comments
 (0)