Skip to content

Commit

Permalink
Require iconv for mbstring
Browse files Browse the repository at this point in the history
As the mbstring polyfill using the iconv functions a lot, if not in all calls being done, code without iconv using this polyfill will break. 

As this repo also provides a polyfill for iconv I don't think this will be a breaking change.
  • Loading branch information
jaapio authored Nov 22, 2024
1 parent a5ae132 commit 01e07e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Mbstring/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
}
],
"require": {
"php": ">=7.2"
"php": ">=7.2",
"ext-iconv"
},
"provide": {
"ext-mbstring": "*"
Expand Down

0 comments on commit 01e07e8

Please sign in to comment.