-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
67 lines (67 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "alecrabbit/php-console-spinner",
"description": "Extremely flexible spinner for [async] php cli applications",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"terminal",
"spinner",
"console",
"cli",
"pretty",
"shell",
"bash",
"256color",
"8bit",
"colorful",
"ansi",
"async",
"snake",
"reactphp",
"revolt"
],
"require": {
"php": ">=8.2",
"psr/container": "^2.0"
},
"require-dev": {
"fakerphp/faker": "*",
"nunomaduro/collision": "^7.0",
"phpunit/php-code-coverage": "*",
"phpunit/phpunit": "^10.0",
"react/event-loop": "*",
"react/http": "*",
"revolt/event-loop": "*",
"symfony/console": "^6.2",
"symfony/var-dumper": "*"
},
"suggest": {
"ext-mbstring": "For multibyte Unicode string functionality.",
"ext-pcntl": "For signal handling support.",
"react/event-loop": "For ReactPHP event-loop support.",
"revolt/event-loop": "For Revolt event-loop support."
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"AlecRabbit\\Benchmark\\": "lib\\Benchmark\\",
"AlecRabbit\\Lib\\": "lib\\Lib\\",
"AlecRabbit\\Spinner\\": "src\\Spinner\\"
},
"files": [
"src/Spinner/bootstrap.php",
"src/Spinner/Asynchronous/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"AlecRabbit\\Tests\\": "tests\\"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}