Skip to content

Commit 790ea36

Browse files
Kennard VermeirenIchHabRecht
Kennard Vermeiren
authored andcommitted
Allow Symfony ^7.0 as dependency
1 parent e9db2b4 commit 790ea36

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/.idea
33
/.Log
44
composer.lock
5+
.phpunit.result.cache

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
"ext-json": "*",
3232
"ext-simplexml": "*",
3333
"phpunit/php-code-coverage": "^9.0 || ^10.0",
34-
"symfony/console": ">=2.7 <7.0",
35-
"symfony/finder": ">=2.7 <7.0"
34+
"symfony/console": ">=2.7 <8.0",
35+
"symfony/finder": ">=2.7 <8.0"
3636
},
3737
"require-dev": {
3838
"phpunit/phpunit": "^9.3 || ^10.0",
39-
"symfony/filesystem": ">=2.7 <7.0",
39+
"symfony/filesystem": ">=2.7 <8.0",
4040
"phpspec/prophecy": "^1.0",
4141
"php-parallel-lint/php-parallel-lint": "^1.4"
4242
},

src/PhpunitMerger/Command/CoverageCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ protected function configure()
5454
);
5555
}
5656

57-
protected function execute(InputInterface $input, OutputInterface $output)
57+
protected function execute(InputInterface $input, OutputInterface $output): int
5858
{
5959
$finder = new Finder();
6060
$finder->files()

src/PhpunitMerger/Command/LogCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ protected function configure()
3838
);
3939
}
4040

41-
protected function execute(InputInterface $input, OutputInterface $output)
41+
protected function execute(InputInterface $input, OutputInterface $output): int
4242
{
4343
$finder = new Finder();
4444
$finder->files()

0 commit comments

Comments
 (0)