Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 5f2f4cc

Browse files
committed
Merge branch 'feature/i18n-removal' into develop
Close #110
2 parents e1e42c3 + 55e5830 commit 5f2f4cc

15 files changed

+55
-872
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@ for full details on how to migrate your v2 application.
4141
installed via, respectively, the zendframework/zend-mvc-plugin-fileprg,
4242
zendframework/zend-mvc-plugin-flashmessenger, and
4343
zendframework/zend-mvc-plugin-identity packages.
44+
- [#110](https://github.com/zendframework/zend-mvc/pull/110) removes the
45+
internationalization functionality from the component, including factories for
46+
the translator and translator loader manager. This functionality is
47+
now provided by the [zend-i18n](https://zendframework.github.io/zend-i18n/)
48+
and [zend-mvc-i18n](https://zendframework.github.io/zend-mvc-i18n/) packages;
49+
installing `zendframework/zend-mvc-i18n` will restore i18n functionality in
50+
your application.
4451

4552
### Fixed
4653

composer.json

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,44 +25,35 @@
2525
"container-interop/container-interop": "^1.1"
2626
},
2727
"require-dev": {
28-
"zendframework/zend-cache": "^2.6.1",
2928
"zendframework/zend-di": "^2.6",
3029
"zendframework/zend-filter": "^2.6.1",
31-
"zendframework/zend-i18n": "^2.6",
3230
"zendframework/zend-inputfilter": "^2.6",
3331
"zendframework/zend-json": "^2.6.1",
3432
"zendframework/zend-log": "^2.7.1",
3533
"zendframework/zend-modulemanager": "^2.7.1",
3634
"zendframework/zend-serializer": "^2.6.1",
37-
"zendframework/zend-text": "^2.6",
3835
"zendframework/zend-validator": "^2.6",
39-
"zendframework/zend-version": "^2.5",
4036
"zendframework/zend-view": "^2.6.3",
4137
"fabpot/php-cs-fixer": "1.7.*",
42-
"phpunit/PHPUnit": "^4.5",
43-
"sebastian/version": "^1.0.4"
38+
"phpunit/phpunit": "^4.5"
4439
},
4540
"suggest": {
46-
"zendframework/zend-authentication": "Zend\\Authentication component for Identity plugin",
4741
"zendframework/zend-config": "Zend\\Config component",
4842
"zendframework/zend-di": "Zend\\Di component",
4943
"zendframework/zend-filter": "Zend\\Filter component",
5044
"zendframework/zend-http": "Zend\\Http component",
51-
"zendframework/zend-i18n": "Zend\\I18n component for translatable segments",
5245
"zendframework/zend-inputfilter": "Zend\\Inputfilter component",
5346
"zendframework/zend-json": "Zend\\Json component",
5447
"zendframework/zend-log": "Zend\\Log component",
5548
"zendframework/zend-modulemanager": "Zend\\ModuleManager component",
5649
"zendframework/zend-mvc-console": "zend-mvc-console provides the ability to expose zend-mvc as a console application",
50+
"zendframework/zend-mvc-i18n": "zend-mvc-i18n provides integration with zend-i18n, including a translation bridge and translatable route segments",
5751
"zendframework/zend-mvc-plugin-fileprg": "To provide Post/Redirect/Get functionality around forms that container file uploads",
5852
"zendframework/zend-mvc-plugin-flashmessenger": "To provide flash messaging capabilities between requests",
5953
"zendframework/zend-mvc-plugin-identity": "To access the authenticated identity (per zend-authentication) in controllers",
6054
"zendframework/zend-mvc-plugin-prg": "To provide Post/Redirect/Get functionality within controllers",
6155
"zendframework/zend-serializer": "Zend\\Serializer component",
62-
"zendframework/zend-session": "Zend\\Session component for FlashMessenger, PRG, and FPRG plugins",
63-
"zendframework/zend-text": "Zend\\Text component",
6456
"zendframework/zend-validator": "Zend\\Validator component",
65-
"zendframework/zend-version": "Zend\\Version component",
6657
"zendframework/zend-view": "Zend\\View component"
6758
},
6859
"extra": {

0 commit comments

Comments
 (0)