Skip to content

Commit

Permalink
Merge pull request #2 from innogames/php-8-upgrade
Browse files Browse the repository at this point in the history
PHP Upgrade
  • Loading branch information
adlenton authored Nov 3, 2020
2 parents 3adbc1f + c250589 commit 4760f24
Show file tree
Hide file tree
Showing 11 changed files with 570 additions and 388 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.idea/
vendor/
composer.lock
redis.*
test.log
settings.json
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 4.0 ##
* Introduced strict types
* Added test coverage
* Dropped support for php version < 8.0
* Upgraded dependencies

## 2.1 (2018-10-05) ##
Fixed the unix signal handling, extended example process to already set up logging.

Expand Down
70 changes: 44 additions & 26 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,46 @@
{
"name": "innogames/php-resque-scheduler",
"type": "library",
"description": "Namespaced port of chrisboulton/php-resque-scheduler which adds support for scheduling items in the future to Resque, works with innogames/php-resque",
"license": "MIT",
"authors": [
{
"name": "Chris Boulton",
"email": "[email protected]"
},
{
"name": "InnoGames (Grepolis Development Team)",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ResqueScheduler\\": "lib/"
}
},
"repositories": [
{ "type": "git", "url": "https://github.com/innogames/php-resque" }
],
"require": {
"innogames/php-resque": ">=3.0",
"psr/log": "1.0.0"
}
"name": "innogames/php-resque-scheduler",
"type": "library",
"description": "Namespaced port of chrisboulton/php-resque-scheduler which adds support for scheduling items in the future to Resque, works with innogames/php-resque",
"license": "MIT",
"authors": [
{
"name": "Chris Boulton",
"email": "[email protected]"
},
{
"name": "InnoGames (Grepolis Development Team)",
"email": "[email protected]"
},
{
"name": "Justus Graf",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ResqueScheduler\\": [
"lib/",
"test/"
]
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/innogames/php-resque"
}
],
"require": {
"php": ">= 8.0",
"innogames/php-resque": "dev-php-8-upgrade",
"psr/log": "^1.1",
"ext-pcntl": "*",
"ext-json": "*"
},
"require-dev": {
"monolog/monolog": "^2.1",
"phpunit/phpunit": "^9.4",
"predis/predis": ">=1.1"
}
}
14 changes: 0 additions & 14 deletions lib/Exceptions/InvalidTimestampException.php

This file was deleted.

Loading

0 comments on commit 4760f24

Please sign in to comment.