Skip to content

Commit 4113fc3

Browse files
authored
Merge pull request #301 from oliverklee/bugfix/iconv
Add a requirement on iconv and suggest mbstring in `composer.json`
2 parents f6b7d2f + 1306a16 commit 4113fc3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

composer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,16 @@
1515
}
1616
],
1717
"require": {
18-
"php": ">=5.6.20"
18+
"php": ">=5.6.20",
19+
"ext-iconv": "*"
1920
},
2021
"require-dev": {
2122
"phpunit/phpunit": "^4.8.36",
2223
"codacy/coverage": "^1.4"
2324
},
25+
"suggest": {
26+
"ext-mbstring": "for parsing UTF-8 CSS"
27+
},
2428
"autoload": {
2529
"psr-4": {
2630
"Sabberworm\\CSS\\": "src/"

0 commit comments

Comments
 (0)