Skip to content

Commit

Permalink
Allow symfony ^4.4 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
janlam7 authored Aug 31, 2021
1 parent 495b3c5 commit 1873611
Showing 1 changed file with 13 additions and 23 deletions.
36 changes: 13 additions & 23 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{
"name": "hostnet/entity-translation-bundle",
"description": "Translation bundle to help with rendering pretty names for enum-like classes.",
"license": "MIT",
"type": "symfony-bundle",
"name": "hostnet/entity-translation-bundle",
"type": "symfony-bundle",
"description": "Translation bundle to help with rendering pretty names for enum-like classes.",
"license": "MIT",
"minimum-stability": "dev",
"require": {
"php": ">=7.3",
"doctrine/annotations": "^1.3",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/framework-bundle": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/routing": "^5.0",
"symfony/translation": "^5.0",
"symfony/yaml": "^5.0"
"symfony/config": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/routing": "^4.4|^5.0",
"symfony/translation": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0"
},
"require-dev": {
"hostnet/phpcs-tool": "^8.3",
Expand All @@ -31,16 +32,5 @@
"classmap": [
"test/Functional/Fixtures/TestKernel.php"
]
},
"authors": [
{
"name": "Iltar van der Berg",
"email": "[email protected]"
},
{
"name": "Yannick de Lange",
"email": "[email protected]"
}
],
"minimum-stability" : "dev"
}
}

0 comments on commit 1873611

Please sign in to comment.