-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.28 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
{
"name": "ofbeaton/command-running",
"description": "Detects if a command or process is currently running.",
"keywords": ["console", "command", "pid", "kill"],
"homepage": "https://github.com/ofbeaton/command-running",
"license": "MIT",
"authors": [
{
"name": "Finlay Beaton",
"email": "ofbeaton@gmail.com"
},
{
"name": "Command Running Community",
"homepage": "https://github.com/ofbeaton/command-running/graphs/contributors"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phing/phing": "^2.11",
"squizlabs/php_codesniffer": "^2.3",
"mayflower/php-codebrowser": "^1.1",
"ofbeaton/granite": "^0",
"phpunit/phpunit": "^4.8",
"php-mock/php-mock-phpunit": "^0",
"humbug/humbug": "^1.0@dev"
},
"autoload": {
"psr-4": {
"Ofbeaton\\Command\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ofbeaton\\Command\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}