Skip to content

Commit 74aada5

Browse files
authored
Merge pull request #3 from cherry-framework/develop
Develop
2 parents d842cde + ea7f4fd commit 74aada5

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Cherry-core Changelog
22

3+
## [v1.6.0](https://github.com/cherry-framework/core/releases/tag/v1.6.0 "v1.6.0") (2019-05-04)
4+
5+
- Update to new Cherry [Router](https://github.com/cherry-framework/router) version.
6+
37
## [v1.5.0](https://github.com/cherry-framework/core/releases/tag/v1.5.0 "v1.5.0") (2019-04-21)
48

59
- Cherry [Router](https://github.com/cherry-framework/router) and [Logger](https://github.com/cherry-framework/logger)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ config/
6060

6161
Controller is a simple PHP class that contains public methods mapped on route:
6262
```
63-
"action": "Cherry\\Controller\\DefaultController::index"
63+
"action": "DefaultController::index"
6464
```
6565

6666
Every method returns Cherry\HttpUtils\Response object.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"minimum-stability": "dev",
1717
"require": {
1818
"php": ">=5.6.0",
19-
"cherry-project/router": "^1.0",
19+
"cherry-project/router": "1.1.*",
2020
"cherry-project/templater": "^1.0",
2121
"ext-json": "*"
2222
},

composer.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/config/routes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"homepage": {
33
"path": "/",
44
"method": "GET",
5-
"action": "Cherry\\Controller\\DefaultController::index"
5+
"action": "DefaultController::index"
66
}
77
}

0 commit comments

Comments
 (0)