forked from RelistenNL/forceutf8
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1.18 KB
/
composer.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "fylax/forceutf8",
"homepage": "https://github.com/Fylax/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.",
"readme": "README.md",
"require": {
"php": "^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6"
},
"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": "Nico Caprioli",
"email": "nico.caprioli@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"ForceUTF8\\": "ForceUTF8"
}
},
"archive": {
"exclude": [
"tests"
]
},
"extra": {
"thanks": {
"name": "neitanod/forceutf8",
"url": "https://github.com/neitanod/forceutf8"
}
},
"scripts": {
"tests": " ./vendor/bin/phpunit tests"
}
}