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

Update composer.json to reflect depedency on mbstring extension #41

Merged
merged 3 commits into from Sep 21, 2014
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -21,7 +21,7 @@ A PHP library for parsing, formatting, storing and validating international phon

The library can be installed via [composer](http://getcomposer.org/). You can also use any other [PSR-0](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md) compliant autoloader.

The PECL [intl](http://php.net/intl) extension is required for this library to be used.
The PECL [mbstring](http://php.net/mbstring) and [intl](http://php.net/intl) extensions are required for this library to be used.

```json
{
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Expand Up @@ -32,7 +32,8 @@
"exclude": ["Tests/", "build/", "/.travis.yml", "/build.xml", "phpunit.xml.dist", "libphonenumber-for-php.spec"]
},
"require": {
"ext-intl": "*"
"ext-intl": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phing/phing": "~2.7",
Expand Down