mirror of
https://github.com/idanoo/php-resque
synced 2025-07-02 06:02:21 +00:00
2.0.3 (2022-09-12)
- Update composer packages - Added WoodpeckerCI tests - Updated links in composer package - Stricter typing
This commit is contained in:
parent
f9a22e7b8a
commit
05cae402b5
21 changed files with 215 additions and 524 deletions
|
@ -1,6 +1,8 @@
|
|||
php-resque: PHP Resque Worker (and Enqueue)
|
||||
===========================================
|
||||
|
||||
[](https://ci.tinker.nz/idanoo/php-resque)
|
||||
|
||||
Resque is a Redis-backed library for creating background jobs, placing
|
||||
those jobs on one or more queues, and processing them later.
|
||||
|
||||
|
@ -58,7 +60,7 @@ If you're not familiar with Composer, please see <http://getcomposer.org/>.
|
|||
```json
|
||||
{
|
||||
"require": {
|
||||
"idanoo/php-resque": "^1.4"
|
||||
"idanoo/php-resque": "^2.0"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
@ -80,7 +82,7 @@ Jobs are queued as follows:
|
|||
|
||||
```php
|
||||
// Required if redis is located elsewhere
|
||||
Resque::setBackend('localhost:6379');
|
||||
Resque::setBackend('redis:6379');
|
||||
|
||||
$args = ['name' => 'TestName'];
|
||||
|
||||
|
@ -468,7 +470,7 @@ needing to directly examine the code), have a look at `HOWITWORKS.md`.
|
|||
## Contributors ##
|
||||
|
||||
### Current Maintainers ###
|
||||
* @iDanoo
|
||||
* @idanoo
|
||||
|
||||
### Past Maintainer / Forked From ###
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue