Remove credis dependancy for php-redis/predis

This commit is contained in:
Daniel Mason 2018-05-25 14:24:24 +12:00
parent 968b7e6a30
commit 6f78451498
2 changed files with 15 additions and 19 deletions

View File

@ -1,4 +1,4 @@
php-resque: PHP Resque Worker (and Enqueue) [![Build Status](https://secure.travis-ci.org/chrisboulton/php-resque.png)](http://travis-ci.org/chrisboulton/php-resque) php-resque: PHP Resque Worker (and Enqueue)
=========================================== ===========================================
Resque is a Redis-backed library for creating background jobs, placing Resque is a Redis-backed library for creating background jobs, placing
@ -37,15 +37,15 @@ pre and post jobs
## Requirements ## ## Requirements ##
* PHP 5.3+ * PHP 5.6+
* phpredis
* Redis 2.2+ * Redis 2.2+
* Optional but Recommended: Composer * Composer
## Getting Started ## ## Getting Started ##
The easiest way to work with php-resque is when it's installed as a The easiest way to work with php-resque is when it's installed as a
Composer package inside your project. Composer isn't strictly Composer package inside your project.
required, but makes life a lot easier.
If you're not familiar with Composer, please see <http://getcomposer.org/>. If you're not familiar with Composer, please see <http://getcomposer.org/>.
@ -54,7 +54,7 @@ If you're not familiar with Composer, please see <http://getcomposer.org/>.
```json ```json
{ {
"require": { "require": {
"chrisboulton/php-resque": "1.2.x" "idanoo/php-resque": "dev-master"
} }
} }
``` ```
@ -440,7 +440,10 @@ needing to directly examine the code), have a look at `HOWITWORKS.md`.
## Contributors ## ## Contributors ##
### Project Lead ### ### Current Maintainers ###
* @iDanoo
### Past Maintainer / Forked From ###
* @chrisboulton * @chrisboulton

View File

@ -1,26 +1,19 @@
{ {
"name": "chrisboulton/php-resque", "name": "iDanoo/php-resque",
"type": "library", "type": "library",
"description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby.", "description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby. Originally forked from chrisboulton/php-resque.",
"keywords": ["job", "background", "redis", "resque"], "keywords": ["job", "background", "redis", "resque"],
"homepage": "http://www.github.com/chrisboulton/php-resque/", "homepage": "http://www.github.com/iDanoo/php-resque/",
"license": "MIT", "license": "MIT",
"authors": [ "authors": [
{ {
"name": "Chris Boulton", "name": "Daniel Mason",
"email": "chris@bigcommerce.com" "email": "daniel@m2.nz"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/chrisboulton/credis"
} }
], ],
"require": { "require": {
"php": ">=5.3.0", "php": ">=5.3.0",
"ext-pcntl": "*", "ext-pcntl": "*",
"colinmollenhour/credis": "~1.7",
"psr/log": "~1.0" "psr/log": "~1.0"
}, },
"suggest": { "suggest": {