-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
31 lines (31 loc) · 944 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
{
"name": "misterion/ko-process",
"type": "library",
"description": "Simple pcntl fork wrapper and process manager",
"keywords": ["pcntl", "fork", "signal", "thread", "background", "posix", "cli", "utility", "exit_code", "amqp", "shared memory", "semaphore"],
"homepage": "https://github.com/misterion/ko-process",
"license": "MIT",
"authors": [
{
"name": "Nikolay Bondarenko",
"email": "[email protected]"
}
],
"suggest": {
"ext-proctitle": "*",
"ext-pcntl": "*",
"ext-sysvsem": "Required for using the Semaphore class",
"ext-sysvshm": "Required for using the SharedMemory class",
"ext-posix": "*"
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0.0",
"php-mock/php-mock-phpunit": "0.2"
},
"autoload": {
"psr-0": { "Ko": "src" }
}
}