diff --git a/README.md b/README.md
index cd8f83f..182e57d 100644
--- a/README.md
+++ b/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 .
@@ -54,7 +54,7 @@ If you're not familiar with Composer, please see .
```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
diff --git a/composer.json b/composer.json
index b12fa29..e33f4a4 100644
--- a/composer.json
+++ b/composer.json
@@ -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": {