Skip to content

Commit

Permalink
Merge pull request #19 from NicoHaase/package-upgrades
Browse files Browse the repository at this point in the history
Updated packages, also removing a irrelevant type hint
  • Loading branch information
NicoHaase authored Jun 3, 2020
2 parents 5970020 + d4da1ae commit 47c4405
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
20 changes: 10 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,24 @@ script:

matrix:
include:
- php: 7.1
env: SYMFONY_VERSION=3.4.x
- php: 7.1
env: SYMFONY_VERSION=4.3.x
- php: 7.2
env: SYMFONY_VERSION=3.4.x
- php: 7.2
env: SYMFONY_VERSION=4.2.x
- php: 7.2
env: SYMFONY_VERSION=4.3.x
- php: 7.2
env: SYMFONY_VERSION=4.4.x
- php: 7.2
env: SYMFONY_VERSION=5.0.x
- php: 7.3
env: SYMFONY_VERSION=4.3.x
- php: 7.2
env: SYMFONY_VERSION=5.1.x
- php: 7.3
env: SYMFONY_VERSION=4.4.x
- php: 7.3
env: SYMFONY_VERSION=5.0.x
- php: 7.3
env: SYMFONY_VERSION=5.1.x
- php: 7.4
env: SYMFONY_VERSION=4.4.x
- php: 7.4
env: SYMFONY_VERSION=5.0.x
- php: 7.4
env: SYMFONY_VERSION=5.1.x
fast_finish: true
3 changes: 1 addition & 2 deletions Task/TaskInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public function isDue($currentTime) : bool;

/**
* Execute the task
* @return mixed
*/
public function run();
}
}
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
},
"keywords": ["cron", "task", "scheduler", "symfony", "bundle"],
"require": {
"php": "^7.1",
"symfony/console": "~3.4|~4.0|~5.0",
"dragonmantank/cron-expression": "^2.3"
"php": "^7.2",
"symfony/console": "^3.4|^4.4|^5.0",
"dragonmantank/cron-expression": "^2.3|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"phpunit/phpunit": "^8.5",
"symfony/phpunit-bridge": "^5.0",
"monolog/monolog": "^1.25"
},
Expand Down

0 comments on commit 47c4405

Please sign in to comment.