Omprakash Patel
Omprakash Patel

Reputation: 552

How can I download Redis package for php 8?

I want use Redis cache on my Laravel website with php 8, PHP 8 does not provide Redis Package by default.How can I download Redis package for php 8?

I have try to download from website https://pecl.php.net/package/redis/5.1.1/windows

but only available for php 7 , not for php 8

Upvotes: 0

Views: 9818

Answers (3)

Raktim Biswas
Raktim Biswas

Reputation: 4087

Select the most recent version of the Redis package from the following URL

For example, you can select the release 6.0.2 and you will be able to see the compatible PHP version for this particular package at the bottom of the page.

dependency for the redis release

Upvotes: 1

unm4sk
unm4sk

Reputation: 345

https://github.com/phpredis/phpredis/blob/develop/INSTALL.md

PHPRedis is compatible with PHP 8.x versions.

Upvotes: 1

Related Questions