-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 887 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": "maximgrynykha/winkill",
"description": "Scan & Kill Windows processes in PHP",
"type": "library",
"license": "MIT",
"keywords": [
"os", "operating system", "windows", "php",
"kill", "terminate", "process", "processes"
],
"homepage": "https://github.com/MaximGrynykha/winkill",
"authors": [
{
"name": "Maxim Grynykha",
"email": "[email protected]",
"homepage": "https://github.com/MaximGrynykha"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-mbstring": "*"
},
"require-dev": {
"symfony/var-dumper": "^6.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Winkill\\": "src/Winkill"
}
},
"config": {
"process-timeout": 0
}
}