forked from vend/php-resque
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from innogames/php-8-upgrade
PHP Upgrade
- Loading branch information
Showing
47 changed files
with
2,649 additions
and
1,619 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
{ | ||
"_-x-vim-formatting": " vim: set ft=javascript ts=4 sw=4 et : ", | ||
|
||
"name": "innogames/php-resque", | ||
"name": "innogames/php-resque", | ||
"description": "Port of vend/resque which is the namespaced port of chrisbolton/php-resque, supports Predis, more DI", | ||
"license": "MIT", | ||
"license": "MIT", | ||
"minimum-stability": "stable", | ||
"authors": [ | ||
{ | ||
|
@@ -17,39 +15,43 @@ | |
{ | ||
"name": "Grepolis Devs", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Justus Graf", | ||
"email": "[email protected]" | ||
} | ||
], | ||
|
||
"autoload": { | ||
"psr-4": { | ||
"Resque\\": ["src/", "test/"] | ||
"Resque\\": [ | ||
"src/", | ||
"test/" | ||
] | ||
} | ||
}, | ||
|
||
"bin": [ | ||
"resque" | ||
], | ||
|
||
"require": { | ||
"php": ">=5.3.7", | ||
"psr/log": "1.0.0", | ||
"symfony/console": ">=2.7" | ||
"php": "^7.3 || ^8.0", | ||
"psr/log": "^1.1", | ||
"symfony/console": "^5.0", | ||
"ext-pcntl": "*", | ||
"ext-posix": "*", | ||
"ext-json": "*" | ||
}, | ||
|
||
"require-dev": { | ||
"colinmollenhour/credis": "1.3.*", | ||
"predis/predis": ">=0.8.6", | ||
"phpunit/phpunit": "^7.0", | ||
"monolog/monolog": "1.7.*" | ||
"colinmollenhour/credis": "^1.11", | ||
"predis/predis": ">=1.1", | ||
"phpunit/phpunit": "^9.4", | ||
"monolog/monolog": "^2.0" | ||
}, | ||
|
||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.1.x-dev", | ||
"dev-2.0": "2.0.x-dev" | ||
"dev-2.0": "2.0.x-dev" | ||
} | ||
}, | ||
|
||
"suggest": { | ||
"ext-proctitle": "Allows php-resque to rename the title of UNIX processes to show the status of a worker.", | ||
"predis/predis": "Suggested Redis client", | ||
|
Oops, something went wrong.