-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.05 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
46
47
48
{
"name": "alecrabbit/php-wcwidth",
"description": "Calculate width of unicode strings rendered to a terminal",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"wcwidth",
"wcswidth",
"cli",
"console"
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.0",
"symfony/cache": "^6.2",
"symfony/console": "^6.2",
"symfony/http-client": "^6.2",
"symfony/var-dumper": "^6.2",
"twig/twig": "^3.5"
},
"suggest": {
"ext-ffi": "For FFI bindings.",
"ext-mbstring": "For multibyte Unicode string functionality."
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"AlecRabbit\\WCWidth\\App\\": "lib\\App",
"AlecRabbit\\WCWidth\\Kernel\\": "src\\Kernel"
},
"files": [
"src\\bootstrap.php",
"src\\File\\versions.php",
"src\\File\\wide.php",
"src\\File\\zero.php",
"src\\Kernel\\version.php"
]
},
"autoload-dev": {
"psr-4": {
"AlecRabbit\\Tests\\": "tests\\"
}
}
}