Skip to content

Commit

Permalink
Merge pull request #33 from ramsey/symfony-6
Browse files Browse the repository at this point in the history
Allow use of Symfony 6.x packages
  • Loading branch information
jdrieghe authored Jan 3, 2022
2 parents 845e6e6 + 9147c3f commit 15fd0bd
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"bin": ["bin/license-checker"],
"require": {
"php": "^8.0",
"symfony/console": "^4.0 || ^5.0",
"symfony/process": "^4.0 || ^5.0",
"symfony/yaml": "^4.0 || ^5.0"
"symfony/console": "^4.0 || ^5.0 || ^6.0",
"symfony/process": "^4.0 || ^5.0 || ^6.0",
"symfony/yaml": "^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
Expand All @@ -32,5 +32,10 @@
"psr-4": {
"LicenseChecker\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}

0 comments on commit 15fd0bd

Please sign in to comment.