PHP Package: colinmollenhour/credis
Credis is a PHP library for Redis that offers efficient and reliable data management for your applications.
Package Description
Credis is a powerful PHP library designed for seamless integration with Redis, enabling high-performance data storage and retrieval. With a focus on speed and simplicity, Credis streamlines the process of working with Redis, ensuring optimal performance for your applications.
Download Latest Version: 1.17.0

Previous Versions
Code Integration Example
Make sure to include the correct namespace and class paths for proper usage.
<?php
// Example from PHPlibraries.com
require_once 'libs/colinmollenhour/credis/1.17.0/loader.php';
require_once 'libs/predis/predis/3.0.1/loader.php';
require_once 'libs/phpredis/phpredis/6.2.0/loader.php';
use Credis\Client;
use Predis\Client;
use Redis;
$obj = new Client();
echo '✅ Test OK: ' . get_class($obj);
?>
We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.
Community Discussion
Ask questions, share tips, or report issues below.