-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.25 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
{
"name": "aza/clibase",
"description": "AzaCliBase - Anizoptera CMF component with basic functionality and helper methods for CLI and Daemon applications (forks, libevent, etc..).",
"keywords": [
"cli", "daemon", "helper", "utility",
"fork", "posix", "pcntl", "libevent",
"exit code", "signal"
],
"homepage": "https://github.com/Anizoptera/AzaCliBase",
"license": "MIT",
"support": {
"issues": "https://github.com/Anizoptera/AzaCliBase/issues"
},
"authors": [
{"name": "Amal Samally", "email": "[email protected]", "homepage": "https://github.com/amal"},
{"name": "AzaGroup Members"}
],
"require": {
"php": ">=5.3.3"
},
"suggest": {
"ext-posix": "Used everywhere in component. Really it's a requirement for normal work.",
"ext-pcntl": "Used everywhere in component. Really it's a requirement for normal work.",
"ext-proctitle": "Used to change process title",
"ext-libevent": "Used for storing one main event base for application and save availability flag",
"aza/libevent": "Used for storing one main event base for application"
},
"autoload": {
"psr-0": {
"Aza\\Components\\CliBase": ""
}
},
"target-dir": "Aza/Components/CliBase",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "dev"
}