-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
35 lines (35 loc) · 1021 Bytes
/
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
{
"name": "zbateson/mb-wrapper",
"description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
"keywords": ["mb_convert_encoding", "charset", "encoding", "string", "mbstring", "iconv", "multibyte", "mb", "mime", "mail", "http"],
"license": "BSD-2-Clause",
"authors": [
{
"name": "Zaahid Bateson"
}
],
"require": {
"php": ">=8.0",
"symfony/polyfill-mbstring": "^1.9",
"symfony/polyfill-iconv": "^1.9"
},
"require-dev": {
"phpunit/phpunit": "^9.6|^10.0",
"friendsofphp/php-cs-fixer": "*",
"phpstan/phpstan": "*"
},
"suggest": {
"ext-mbstring": "For best support/performance",
"ext-iconv": "For best support/performance"
},
"autoload": {
"psr-4": {
"ZBateson\\MbWrapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZBateson\\MbWrapper\\": "tests/MbWrapper"
}
}
}