Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Docs/split #2642

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 40 commits into
base: develop
Choose a base branch
Loading
from
Open
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
063198b
Valkey-PHP
rlunar Mar 21, 2025
4263473
Update README.md
rlunar Mar 21, 2025
c29ef42
Update .gitignore
rlunar Mar 21, 2025
5ddc8be
Update README with Pre-requisites
Mar 21, 2025
924d16c
Update README with Pre-requisites
Mar 21, 2025
dfed6a0
MD048/code-fence-style: Code fence style [Expected: backtick; Actual:…
Mar 24, 2025
df8eb29
MD031/blanks-around-fences: Fixed | MD040/fenced-code-language: Fixed
Mar 25, 2025
a3b9bb3
MD033/no-inline-html
Mar 26, 2025
d1644c6
MD022/blanks-around-headings: Headings should be surrounded by blank …
Mar 26, 2025
7458082
MD001/heading-increment: Heading levels should only increment by one …
Mar 26, 2025
45c148a
docs/usage
Mar 26, 2025
99f7c4a
Merge branch 'phpredis:develop' into develop
rlunar Mar 26, 2025
90ccaa8
Fix test IfEq
adrianluna Mar 26, 2025
650b203
Fix high port test
adrianluna Mar 26, 2025
02b74ee
Fix tls connect test
adrianluna Mar 26, 2025
5738836
Merge pull request #1 from rlunar/docs/usage
rlunar Mar 26, 2025
53fcb86
Merge pull request #2 from adrianluna/fix/test-suite
rlunar Mar 26, 2025
558bebf
Merge remote-tracking branch 'origin/main'
Mar 26, 2025
774cd6f
Merge pull request #3 from rlunar/main
rlunar Mar 26, 2025
c6a854f
Split README file into multiple markdown files for easier readability…
Mar 26, 2025
091ef47
Split README file into multiple markdown files for easier readability…
Mar 26, 2025
fac7e92
Documentation | Bitmaps
Mar 26, 2025
0a8ed67
Documentation | Bitmaps
Mar 26, 2025
f315bbc
Documentation | Bitmaps | BitPos
Mar 26, 2025
edb8a75
Documentation | Geospatial indexes
Mar 26, 2025
db32af9
Documentation | Hashes
Mar 26, 2025
b84e1dd
Documentation | Hashes | HyperLogLogs
Mar 26, 2025
0b3bb04
Documentation | Introspection
Mar 26, 2025
a47e0bd
Documentation | Introspection
Mar 26, 2025
f0401de
Documentation | Keys
Mar 26, 2025
c3db4bb
Documentation | Lists
Mar 26, 2025
907f6dc
Documentation | Pub/Sub
Mar 26, 2025
530f5f2
Documentation | Scripting
Mar 26, 2025
56cbfd4
Documentation | Sets
Mar 27, 2025
d735a30
Documentation | Sorted Sets
Mar 27, 2025
bdaadac
Documentation | Streams
Mar 27, 2025
656b85e
Make test suite redis compatible
adrianluna Mar 26, 2025
ed6aa5f
Documentation | Strings
Mar 27, 2025
bd3a794
Documentation | Transactions
Mar 27, 2025
86126ae
Documentation | README
Mar 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
MD031/blanks-around-fences: Fixed | MD040/fenced-code-language: Fixed
  • Loading branch information
Roberto Luna Rojas committed Mar 25, 2025
commit df8eb298352795408acc39e479c403409f143476
15 changes: 6 additions & 9 deletions 15 INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

To pull latest stable released version, from [pecl](https://pecl.php.net/package/redis)

```
```ini
pecl install redis
```

# Installation from sources

To build this extension for the sources tree:

```
```bash
git clone https://github.com/phpredis/phpredis.git
cd phpredis
phpize
Expand All @@ -27,7 +27,6 @@ You can generate a debian package for PHP5, accessible from Apache 2 by running

This extension exports a single class, [Redis](./README.md#class-redis) (and [RedisException](./README.md#class-redisexception) used in case of errors). Check out https://github.com/ukko/phpredis-phpdoc for a PHP stub that you can use in your IDE for code completion.


# Binary packages

Most distributions provides pre-build binary packages of this extension.
Expand All @@ -44,31 +43,30 @@ Fedora users can install the package from the official repository.

Installation of the [php-pecl-redis5](https://packages.fedoraproject.org/pkgs/php-pecl-redis5/php-pecl-redis5/) package:

```
```bash
dnf install php-pecl-redis5
```

## RHEL / CentOS

Installation of the [php-pecl-redis](https://apps.fedoraproject.org/packages/php-pecl-redis) package, from the [EPEL repository](https://fedoraproject.org/wiki/EPEL):

```
```bash
yum install php-pecl-redis
```

### openSUSE ≥ 15.1

Installation of the [php7-redis](https://software.opensuse.org/package/php7-redis?search_term=php7-redis) package:

```
```bash
zypper in php7-redis
```


# Installation on OSX

If the install fails on OSX, type the following commands in your shell before trying again:
```
```bash
MACOSX_DEPLOYMENT_TARGET=10.6
CFLAGS="-arch i386 -arch x86_64 -g -Os -pipe -no-cpp-precomp"
CCFLAGS="-arch i386 -arch x86_64 -g -Os -pipe"
Expand All @@ -91,4 +89,3 @@ You can install it using MacPorts:
# Building on Windows

See [instructions from @char101](https://github.com/phpredis/phpredis/issues/213#issuecomment-11361242) on how to build phpredis on Windows.

Morty Proxy This is a proxified and sanitized view of the page, visit original site.