Skip to content

Commit

Permalink
Merge pull request #250 from shempignon/master
Browse files Browse the repository at this point in the history
Symfony 5 support
  • Loading branch information
alexdebril authored Dec 6, 2019
2 parents 3f53b11 + 8453f1e commit 5f193d3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 15 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"php": ">=7.1",
"guzzlehttp/guzzle": "~6.2",
"psr/log": "~1.0",
"symfony/console": "~3.4|~4.0"
"symfony/console": "~3.4|~4.0|~5.0"
},
"require-dev": {
"phpunit/phpunit": "~7.5.0",
Expand Down
29 changes: 15 additions & 14 deletions composer.lock

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

2 changes: 2 additions & 0 deletions src/FeedIo/Command/DiscoverCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
foreach ($feeds as $feed) {
$output->writeln("<info>found : {$feed}</info>");
}

return 0;
}
}
2 changes: 2 additions & 0 deletions src/FeedIo/Command/ReadCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
break;
}
}

return 0;
}

/**
Expand Down

0 comments on commit 5f193d3

Please sign in to comment.