diff --git a/CHANGELOG.md b/CHANGELOG.md index b738d34..a05bece 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## 3.0.0 under development - Chg #122: Adapt configuration group names to Yii conventions (@vjik) +- Enh #124: Add support of `yiisoft/router` version `^3.0` (@vjik) ## 2.1.0 January 09, 2023 @@ -17,7 +18,7 @@ ## 1.1.1 June 28, 2022 -- Enh #103: Add support for `psr/simple-cache` version `^2.0|^3.0` (@vjik) +- Enh #103: Add support of `psr/simple-cache` version `^2.0|^3.0` (@vjik) ## 1.1.0 June 27, 2022 diff --git a/README.md b/README.md index b7c026b..ee86bd1 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ The package provides FastRoute adapter for [Yii Router](https://github.com/yiiso The package could be installed with composer: -``` +```shell composer require yiisoft/router-fastroute ``` diff --git a/composer.json b/composer.json index ed9462f..3e9cf6b 100644 --- a/composer.json +++ b/composer.json @@ -19,10 +19,10 @@ "require": { "php": "^8.0", "nikic/fast-route": "^1.3", - "psr/simple-cache": "^2.0|^3.0", - "yiisoft/router": "^2.1", "psr/http-message": "^1.0", - "yiisoft/http": "^1.2" + "psr/simple-cache": "^2.0|^3.0", + "yiisoft/http": "^1.2", + "yiisoft/router": "^2.1|^3.0" }, "require-dev": { "maglnet/composer-require-checker": "^4.2",