Skip to content

Commit

Permalink
Merge pull request #6 from andersonamuller/patch-1
Browse files Browse the repository at this point in the history
Allow Symfony ^5.0
  • Loading branch information
mnapoli authored Jan 25, 2020
2 parents 7c65fd0 + 5dd600e commit 1028b26
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"require": {
"php": "^7.0",
"doctrine/dbal": "^2.5",
"symfony/console": "^3.2 || ^4.0"
"symfony/console": "^3.2 || ^4.0 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
Expand Down
2 changes: 2 additions & 0 deletions src/Command/PurgeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@ protected function configure()
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->schemaCommand->purge($input->getOption('force'), $output);

return 0;
}
}
2 changes: 2 additions & 0 deletions src/Command/UpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@ protected function configure()
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->schemaCommand->update($input->getOption('force'), $output);

return 0;
}
}

0 comments on commit 1028b26

Please sign in to comment.