Skip to content

Commit

Permalink
feat: Symfony 7 support (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
kbond authored Oct 24, 2023
1 parent 8861e1b commit cd1366d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"homepage": "https://github.com/zenstruck/console-test",
"type": "library",
"license": "MIT",
"keywords": ["console", "symfony", "test", "command"],
"keywords": ["console", "symfony", "test", "command", "dev"],
"authors": [
{
"name": "Kevin Bond",
Expand All @@ -13,14 +13,14 @@
],
"require": {
"php": ">=8.0",
"symfony/console": "^5.4|^6.0",
"symfony/console": "^5.4|^6.0|^7.0",
"zenstruck/assert": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5.0",
"symfony/framework-bundle": "^5.4|^6.0",
"symfony/phpunit-bridge": "^6.2"
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/phpunit-bridge": "^6.2|^7.0"
},
"config": {
"preferred-install": "dist",
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<php>
<ini name="error_reporting" value="-1" />
<env name="KERNEL_CLASS" value="Zenstruck\Console\Test\Tests\Fixture\Kernel" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0&amp;max[direct]=0"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0&amp;max[direct]=0&amp;quiet[]=indirect&amp;quiet[]=other"/>
<env name="COLUMNS" value="120" />
<env name="SHELL_VERBOSITY" value="-1"/>
</php>
Expand Down

0 comments on commit cd1366d

Please sign in to comment.