Skip to content

Commit

Permalink
Allow sf5.0 & update commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Dolbeau committed Nov 21, 2019
1 parent b3f3530 commit 403b2c6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 4 additions & 4 deletions composer.json
Expand Up @@ -13,14 +13,14 @@
"require": {
"php": "^7.1",
"psr/log": "^1.0",
"symfony/property-access": "^3.4|^4.2"
"symfony/property-access": "^3.4|^4.2|^5.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.8",
"phpunit/phpunit": "^7.5",
"symfony/http-kernel": "^3.4|^4.2",
"symfony/framework-bundle": "^3.4|^4.2",
"symfony/yaml": "^3.4|^4.2",
"symfony/http-kernel": "^3.4|^4.2|^5.0",
"symfony/framework-bundle": "^3.4|^4.2|^5.0",
"symfony/yaml": "^3.4|^4.2|^5.0",
"friendsofphp/php-cs-fixer": "^2.14",
"symfony/phpunit-bridge": "^4.3",
"shapin/stripe": "dev-master"
Expand Down
2 changes: 2 additions & 0 deletions src/Bridge/Symfony/Bundle/Command/DatabaseDiffCommand.php
Expand Up @@ -56,5 +56,7 @@ protected function execute(InputInterface $input, OutputInterface $output)

$schemaDiffHelper = new DoctrineSchemaDiffHelper($output, $schemaDiff);
$schemaDiffHelper->render();

return 0;
}
}
2 changes: 2 additions & 0 deletions src/Bridge/Symfony/Bundle/Command/DebugCommand.php
Expand Up @@ -67,6 +67,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
$io->title('All fixtures');

$io->listing($this->getListing($this->loader->getFixtures()));

return 0;
}

private function getListing(array $fixtures): array
Expand Down
2 changes: 2 additions & 0 deletions src/Bridge/Symfony/Bundle/Command/LoadCommand.php
Expand Up @@ -63,5 +63,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$this->datagen->load($groups, $excludeGroups, $options);

$io->success('Job DONE!');

return 0;
}
}

0 comments on commit 403b2c6

Please sign in to comment.