Skip to content

Commit 55fe823

Browse files
authored
Merge pull request #11 from launchdarkly/eb/sc-179988/allow-sdk5
relax SDK dependency to allow v5.0
2 parents 274b4d6 + 28aa86e commit 55fe823

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.ldrelease/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ publications:
77
jobs:
88
- template:
99
name: php
10+
skip:
11+
- test # don't try to run unit tests in the Releaser environment, since they require a database
1012

1113
documentation:
1214
gitHubPages: true

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# LaunchDarkly Server-Side SDK for PHP - Redis integration with phpredis
22

33
[![CircleCI](https://circleci.com/gh/launchdarkly/php-server-sdk-redis-phpredis.svg?style=svg)](https://circleci.com/gh/launchdarkly/php-server-sdk-redis-phpredis)
4+
[![Packagist](https://img.shields.io/packagist/v/launchdarkly/server-sdk-redis-phpredis.svg?style=flat-square)](https://packagist.org/packages/launchdarkly/server-sdk-redis-phpredis)
5+
[![Documentation](https://img.shields.io/static/v1?label=GitHub+Pages&message=API+reference&color=00add8)](https://launchdarkly.github.io/php-server-sdk-redis-phpredis)
46

57
This library provides a Redis-backed data source for the [LaunchDarkly PHP SDK](https://github.com/launchdarkly/php-server-sdk), replacing the default behavior of querying the LaunchDarkly service endpoints. The underlying Redis client implementation is the [`phpredis`](https://github.com/phpredis/phpredis) extension. If you want to use the Predis package instead, see https://github.com/launchdarkly/php-server-sdk-redis-predis.
68

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
],
2222
"require": {
2323
"php": ">=7.3",
24-
"launchdarkly/server-sdk": "^4"
24+
"launchdarkly/server-sdk": ">=4.0.0 <6.0.0"
2525
},
2626
"require-dev": {
2727
"launchdarkly/server-sdk-shared-tests": "@dev",

0 commit comments

Comments
 (0)