mirror of
https://github.com/predis/predis.git
synced 2026-08-19 02:03:00 +00:00
9 lines
149 B
PHP
9 lines
149 B
PHP
<?php
|
|
require_once '../lib/Predis.php';
|
|
|
|
$configurations = array(
|
|
'host' => '127.0.0.1',
|
|
'port' => 6379,
|
|
'database' => 15
|
|
);
|
|
?>
|