-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
36 lines (36 loc) · 972 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
35
36
{
"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": "[email protected]"
}
],
"support": {
"issues": "https://github.com/mac-cain13/daemonizable-command/issues"
},
"require": {
"php": ">=8.2",
"symfony/console": "^7.0",
"symfony/dependency-injection": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"ext-pcntl": "*",
"ext-posix": "*"
},
"suggest": {
"symfony/filesystem": "If you can't use Upstart or systemd"
},
"autoload": {
"psr-4": { "Wrep\\Daemonizable\\": "src/Wrep/Daemonizable/" }
},
"autoload-dev": {
"psr-4": { "Tests\\Wrep\\Daemonizable\\": "tests/" }
}
}