Skip to content

Commit

Permalink
Make toggl2redmine compatible with PHP8
Browse files Browse the repository at this point in the history
  • Loading branch information
stborchert committed Jan 12, 2022
1 parent 90a8614 commit b14197a
Show file tree
Hide file tree
Showing 3 changed files with 132 additions and 15 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "undpaul/toggl2redmine",
"description": "Command line tool to sync toggl time entries to redmine",
"require": {
"php": ">=5.4.0",
"php": ">=7.4.0",
"ajt/guzzle-toggl": "~1.1",
"kbsali/redmine-api": "^1.5.0",
"kbsali/redmine-api": "^2.1",
"symfony/config": "~2.7|^3",
"symfony/console": "~2.7|^3",
"symfony/yaml": "~2.7|^3"
Expand Down
141 changes: 129 additions & 12 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion toggl2redmine.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
use \Symfony\Component\Console\Application;


$application = new Application('toggl2redmine', '1.1.0');
$application = new Application('toggl2redmine', '1.1.1');
$application->add(new TimeEntrySync());
$application->run();

0 comments on commit b14197a

Please sign in to comment.