Skip to content

Commit bf69c92

Browse files
committed
Require iconv for mbstring
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.
1 parent a5ae132 commit bf69c92

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Mbstring/composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=7.2"
19+
"php": ">=7.2",
20+
"ext-iconv": "*"
2021
},
2122
"provide": {
2223
"ext-mbstring": "*"

0 commit comments

Comments
 (0)