Skip to content

Commit

Permalink
remove lib-ICU requirement
Browse files Browse the repository at this point in the history
As it causes pain for users to install CakePHP and is only used in very few part of the framework where a warning will be thrown .
Ref #9697
  • Loading branch information
antograssiot committed Feb 27, 2017
1 parent fd6b492 commit 199e535
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -19,7 +19,6 @@
},
"require": {
"php": ">=5.6.0",
"lib-ICU": ">=4.8",
"ext-intl": "*",
"ext-mbstring": "*",
"cakephp/chronos": "~1.0",
Expand All @@ -28,7 +27,8 @@
"zendframework/zend-diactoros": "~1.0"
},
"suggest": {
"ext-openssl": "To use Security::encrypt() or have secure CSRF token generation."
"ext-openssl": "To use Security::encrypt() or have secure CSRF token generation.",
"lib-ICU": "The intl PHP library, to use Text::transliterate() or Text::slug()"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0",
Expand Down
1 change: 0 additions & 1 deletion src/I18n/composer.json
Expand Up @@ -16,7 +16,6 @@
},
"require": {
"cakephp/core": "~3.0",
"lib-ICU": ">=4.8",
"ext-intl": "*",
"cakephp/chronos": "*",
"aura/intl": "^3.0.0"
Expand Down
3 changes: 2 additions & 1 deletion src/Utility/composer.json
Expand Up @@ -9,7 +9,8 @@
}
],
"suggest": {
"ext-intl": "To use Text::transliterate() or Text::slug()"
"ext-intl": "To use Text::transliterate() or Text::slug()",
"lib-ICU": "To use Text::transliterate() or Text::slug()"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 199e535

Please sign in to comment.