Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support of yiisoft/router version ^3.0 #124

Merged
merged 2 commits into from
Feb 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down