Skip to content

Commit

Permalink
Merge pull request #11 from previousnext/symfony-6
Browse files Browse the repository at this point in the history
Support Symfony 6
  • Loading branch information
mstrelan authored Jan 13, 2023
2 parents 2c4648e + 96f44f4 commit 1964f69
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"require": {
"php": "^7.4||^8.0",
"phpunit/phpunit": "^9.5",
"symfony/console": "^3.4||^4.4"
"symfony/console": "^3.4||^4.4||^5||^6"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
Expand All @@ -34,6 +34,9 @@
"preferred-install": {
"*": "dist"
},
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
2 changes: 2 additions & 0 deletions src/FinderCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ protected function execute(InputInterface $input, OutputInterface $output) {
foreach ($testFilenames as $testFilename) {
$output->writeln($testFilename);
}

return 0;
}

}

0 comments on commit 1964f69

Please sign in to comment.