Skip to content
This repository was archived by the owner on Jun 14, 2026. It is now read-only.

Commit fd48383

Browse files
author
pie-extensions-bot
committed
sync: update to upstream 6.3.0 (6.3.0)
1 parent af73533 commit fd48383

31 files changed

Lines changed: 6615 additions & 2303 deletions

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pie-extensions/redis",
33
"description": "PIE-compatible mirror of phpredis/phpredis",
44
"type": "php-ext",
5-
"version": "6.2.0",
5+
"version": "6.3.0",
66
"require": {
77
"php": ">=8.2"
88
},

src/CHANGELOG.md

Lines changed: 284 additions & 0 deletions
Large diffs are not rendered by default.

src/INSTALL.md

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Installation with PIE from packagist
2+
3+
To pull latest stable released version, from [packagist](https://packagist.org/packages/phpredis/phpredis)
4+
5+
~~~
6+
pie install phpredis/phpredis
7+
~~~
8+
19
# Installation from pecl
210

311
To pull latest stable released version, from [pecl](https://pecl.php.net/package/redis)
@@ -6,6 +14,12 @@ To pull latest stable released version, from [pecl](https://pecl.php.net/package
614
pecl install redis
715
~~~
816

17+
Configure options can be passed as well:
18+
19+
```bash
20+
pecl install --configureoptions="enable-redis-msgpack='yes' enable-redis-igbinary='yes'" redis
21+
```
22+
923
# Installation from sources
1024

1125
To build this extension for the sources tree:
@@ -40,20 +54,20 @@ Follow the DLL link on the [https://pecl.php.net/package/redis](https://pecl.php
4054

4155
Fedora users can install the package from the official repository.
4256

43-
### Fedora ≥ 29, Version 5
57+
### Fedora ≥ 40, Version 6
4458

45-
Installation of the [php-pecl-redis5](https://packages.fedoraproject.org/pkgs/php-pecl-redis5/php-pecl-redis5/) package:
59+
Installation of the [php-pecl-redis6](https://src.fedoraproject.org/rpms/php-pecl-redis6/) package:
4660

4761
~~~
48-
dnf install php-pecl-redis5
62+
dnf install php-redis
4963
~~~
5064

51-
## RHEL / CentOS
65+
## CentOS / RHEL and clones
5266

53-
Installation of the [php-pecl-redis](https://apps.fedoraproject.org/packages/php-pecl-redis) package, from the [EPEL repository](https://fedoraproject.org/wiki/EPEL):
67+
Installation of the php-pecl-redis6 package, available for PHP ≥ 8.3:
5468

5569
~~~
56-
yum install php-pecl-redis
70+
dnf install php-redis
5771
~~~
5872

5973
### openSUSE ≥ 15.1

src/README.md

Lines changed: 794 additions & 787 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)