-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (27 loc) · 762 Bytes
/
composer.json
File metadata and controls
30 lines (27 loc) · 762 Bytes
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
{
"name": "che/console-signals",
"description": "Unix signal support for Symfony Console",
"keywords": ["console", "signal", "pcntl", "process", "restart"],
"homepage": "http://github.com/chEbba/ConsoleSignals",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kirill chEbba Chebunin",
"email": "iam@chebba.org",
"homepage": "http://github.com/chEbba"
}
],
"autoload": {
"psr-4": { "Che\\ConsoleSignals\\": "src/" }
},
"require": {
"php": ">=5.4.1",
"symfony/console": "~2.3 || ~3.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"symfony/console": "2.3.0",
"symfony/process": "2.3.*"
}
}