Skip to content

Commit 892da9e

Browse files
authored
feat: use phpredis 6 in ci (#51347)
1 parent 2057d55 commit 892da9e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: shivammathur/setup-php@v2
5454
with:
5555
php-version: ${{ matrix.php }}
56-
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, redis-phpredis/phpredis@5.3.7, igbinary, msgpack, lzf, zstd, lz4, memcached, gmp, :php-psr
56+
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, redis, igbinary, msgpack, lzf, zstd, lz4, memcached, gmp, :php-psr
5757
ini-values: error_reporting=E_ALL
5858
tools: composer:v2
5959
coverage: none

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
"ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
164164
"ext-pdo": "Required to use all database features.",
165165
"ext-posix": "Required to use all features of the queue worker.",
166-
"ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
166+
"ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
167167
"ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
168168
"aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
169169
"brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",

src/Illuminate/Redis/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
}
2727
},
2828
"suggest": {
29-
"ext-redis": "Required to use the phpredis connector (^4.0|^5.0).",
29+
"ext-redis": "Required to use the phpredis connector (^4.0|^5.0|^6.0).",
3030
"predis/predis": "Required to use the predis connector (^2.0.2)."
3131
},
3232
"extra": {

0 commit comments

Comments
 (0)