mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 00:11:53 +00:00
Remove credis dependancy for php-redis/predis
This commit is contained in:
parent
968b7e6a30
commit
6f78451498
17
README.md
17
README.md
@ -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
|
||||
@ -37,15 +37,15 @@ pre and post jobs
|
||||
|
||||
## Requirements ##
|
||||
|
||||
* PHP 5.3+
|
||||
* PHP 5.6+
|
||||
* phpredis
|
||||
* Redis 2.2+
|
||||
* Optional but Recommended: Composer
|
||||
* Composer
|
||||
|
||||
## Getting Started ##
|
||||
|
||||
The easiest way to work with php-resque is when it's installed as a
|
||||
Composer package inside your project. Composer isn't strictly
|
||||
required, but makes life a lot easier.
|
||||
Composer package inside your project.
|
||||
|
||||
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
|
||||
{
|
||||
"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 ##
|
||||
|
||||
### Project Lead ###
|
||||
### Current Maintainers ###
|
||||
* @iDanoo
|
||||
|
||||
### Past Maintainer / Forked From ###
|
||||
|
||||
* @chrisboulton
|
||||
|
||||
|
@ -1,26 +1,19 @@
|
||||
{
|
||||
"name": "chrisboulton/php-resque",
|
||||
"name": "iDanoo/php-resque",
|
||||
"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"],
|
||||
"homepage": "http://www.github.com/chrisboulton/php-resque/",
|
||||
"homepage": "http://www.github.com/iDanoo/php-resque/",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Chris Boulton",
|
||||
"email": "chris@bigcommerce.com"
|
||||
}
|
||||
],
|
||||
"repositories": [
|
||||
{
|
||||
"type": "vcs",
|
||||
"url": "https://github.com/chrisboulton/credis"
|
||||
"name": "Daniel Mason",
|
||||
"email": "daniel@m2.nz"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.3.0",
|
||||
"ext-pcntl": "*",
|
||||
"colinmollenhour/credis": "~1.7",
|
||||
"psr/log": "~1.0"
|
||||
},
|
||||
"suggest": {
|
||||
|
Loading…
Reference in New Issue
Block a user