forked from neitanod/forceutf8
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 944 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "relisten/forceutf8",
"homepage": "https://github.com/RelistenNL/forceutf8",
"license": "BSD-3-Clause",
"type": "library",
"description": "PHP Class Encoding featuring popular Encoding::toUTF8() function --formerly known as forceUTF8()-- that fixes mixed encoded strings.",
"require": {
"php": "^7.0 || ^8.0"
},
"suggest": {
"ext-iconv": "To convert non-UTF-8 strings to UTF-8",
"ext-intl": "To convert non-UTF-8 strings to UTF-8",
"ext-mbstring": "To convert non-UTF-8 strings to UTF-8"
},
"authors": [
{
"name": "Sjoerd Wenker",
"email": "sjoerd@relisten.nl"
}
],
"autoload": {
"psr-4": {
"ForceUTF8\\": "src/ForceUTF8/"
}
},
"extra": {
"thanks": {
"name": "neitanod/forceutf8",
"url": "https://github.com/neitanod/forceutf8"
}
}
}