-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
34 lines (34 loc) · 873 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
{
"name": "ptlis/shell-command",
"description": "A basic wrapper around execution of shell commands.",
"license": "MIT",
"keywords": [ "shell", "exec", "command", "process", "run", "execute" ],
"type": "library",
"authors": [
{
"name": "brian ridley",
"email":"[email protected]"
}
],
"require": {
"php": ">=8.1.0",
"ext-pcntl": "*",
"psr/log": "^1.0",
"react/event-loop": "^0.4.3",
"react/promise": "^2.5"
},
"require-dev": {
"phpstan/phpstan": "^1.6",
"phpunit/phpunit": "^9.5.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"ptlis\\ShellCommand\\": "src/",
"ptlis\\ShellCommand\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}