Skip to content

Commit e14e679

Browse files
authored
Add support for Symfony 5.1 and greater (#658)
* Add support for Symfony 5 * Add changelog
1 parent 3960ae5 commit e14e679

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

CHANGELOG-2.0.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ This changelog references the relevant changes done in 6.0 versions.
66
### 2.0.0-ALPHA1 (unreleased)
77

88
* Added `NL` translations [[#631](https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/pull/631)]
9+
* Added support for Symfony 5.1 and greater [[#658](https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/pull/658)]
910
* Bumped `twig/twig` supported versions to `1.40` for `1.x` and `2.9` for `2.x` [[#652](https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/pull/652)]
1011
* Dropped support for PHP 7.1 [[#651](https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/pull/651)]
1112
* Dropped support for Symfony versions anterior to `4.4` [[#648](https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/pull/648)]

composer.json

+9-10
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222
"require": {
2323
"php": "^7.2",
2424
"friendsofsymfony/oauth2-php": "~1.1",
25-
"symfony/dependency-injection": "^4.4",
26-
"symfony/framework-bundle": "^4.4",
27-
"symfony/security-bundle": "^4.4",
28-
"symfony/twig-bundle": "^4.4"
25+
"symfony/dependency-injection": "^4.4 || ^5.1",
26+
"symfony/framework-bundle": "^4.4 || ^5.1",
27+
"symfony/security-bundle": "^4.4 || ^5.1",
28+
"symfony/twig-bundle": "^4.4 || ^5.1"
2929
},
3030
"conflict": {
3131
"twig/twig": "<1.40 || >=2.0,<2.9"
3232
},
3333
"require-dev": {
34-
"doctrine/doctrine-bundle": "~1.0",
34+
"doctrine/doctrine-bundle": "^2.0",
3535
"doctrine/mongodb-odm": "~1.0",
3636
"doctrine/orm": "~2.2",
3737
"phing/phing": "~2.4",
@@ -40,11 +40,10 @@
4040
"phpstan/phpstan-shim": "~0.9",
4141
"phpunit/phpunit": "~5.0 || ~6.0",
4242
"propel/propel1": "~1.6",
43-
"symfony/class-loader": "~3.0 || ~4.0",
44-
"symfony/console": "~3.0 || ~4.0",
45-
"symfony/form": "~3.0 || ~4.0",
46-
"symfony/phpunit-bridge": "~3.0 || ~4.0",
47-
"symfony/yaml": "~3.0 || ~4.0",
43+
"symfony/console": "^4.4 || ^5.1",
44+
"symfony/form": "^4.4 || ^5.1",
45+
"symfony/phpunit-bridge": "^4.4 || ^5.1",
46+
"symfony/yaml": "^4.4 || ^5.1",
4847
"willdurand/propel-typehintable-behavior": "~1.0"
4948
},
5049
"suggest": {

0 commit comments

Comments
 (0)