Skip to content

Commit 9f5b48e

Browse files
committed
minor #508 Require iconv for mbstring (jaapio)
This PR was merged into the 1.x branch. Discussion ---------- 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. Commits ------- bf69c92 Require iconv for mbstring
2 parents d7e262e + bf69c92 commit 9f5b48e

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)