forked from mac-cain13/daemonizable-command
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 688 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 688 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
{
"name": "wrep/daemonizable-command",
"type": "library",
"description": "Daemonizable (endless running) commands for Symfony.",
"homepage": "https://github.com/mac-cain13/daemonizable-command",
"keywords": ["daemon", "background process", "long running process", "backgrounding", "Symfony2", "Symfony3", "Symfony"],
"license": "MIT",
"authors": [
{
"name": "Mathijs Kadijk",
"email": "mathijs@wrep.nl"
}
],
"support": {
"issues": "https://github.com/mac-cain13/daemonizable-command/issues"
},
"require": {
"php": ">=5.5.9",
"symfony/console": "3.*",
"symfony/dependency-injection": "3.*"
},
"autoload": {
"psr-0": { "Wrep\\Daemonizable\\": "src/" }
}
}