mirror of
https://github.com/predis/predis.git
synced 2026-08-22 14:31:12 +00:00
153758019c
This commit marks the start of works for the next major release of Predis which will bring various breaking changes needed to polish the internal design making the library even more flexible to use or extend and, more importantly, almost stable in terms of API. The Redis commands API exposed by Predis\Client is not going to change much if not at all which is a good news. The most immediate changes affecting developers will involve the renaming of a few namespaces and classes, the removal of some previously deprecated classes and methods and some tweaks to the current abstractions. Right now the plan is to have a fast paced development to release this version as soon as possible, ideally a few weeks later than Redis 2.8, then wait to see the final definition of redis-cluster so that we can tweak our code if needed and finally hit the v1.0.0 milestone with as few changes as possible. Furthermore, v1.x will most likely be the last version of Predis supporting PHP 5.3 as we will start migrating to PHP 5.4 (or even 5.5) with v2.x, which is not going to happen soon anyway.
38 lines
913 B
INI
38 lines
913 B
INI
; This file is meant to be used with Onion http://c9s.github.com/Onion/
|
|
; For instructions on how to build a PEAR package of Predis please follow
|
|
; the instructions at this URL:
|
|
;
|
|
; https://github.com/c9s/Onion#a-quick-tutorial-for-building-pear-package
|
|
;
|
|
|
|
[package]
|
|
name = "Predis"
|
|
desc = "Flexible and feature-complete PHP client library for Redis"
|
|
homepage = "http://github.com/nrk/predis"
|
|
license = "MIT"
|
|
version = "0.9.0"
|
|
stability = "devel"
|
|
channel = "pear.nrk.io"
|
|
|
|
author = "Daniele Alessandri \"nrk\" <suppakilla@gmail.com>"
|
|
|
|
[require]
|
|
php = ">= 5.3.2"
|
|
pearinstaller = "1.4.1"
|
|
|
|
[roles]
|
|
*.xml.dist = test
|
|
*.md = doc
|
|
LICENSE = doc
|
|
lib = php
|
|
|
|
[optional phpiredis]
|
|
hint = "Add support for faster protocol handling with phpiredis"
|
|
extensions[] = socket
|
|
extensions[] = phpiredis
|
|
|
|
[optional webdis]
|
|
hint = "Add support for Webdis"
|
|
extensions[] = curl
|
|
extensions[] = phpiredis
|