-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
47 lines (47 loc) · 1.44 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
41
42
43
44
45
46
47
{
"name": "fresns/cmd-word-manager",
"type": "library",
"description": "Command word manager(in laravel) helps plugins(individual functional modules) to communicate with each other easily.",
"keywords": ["fresns", "cmd-word", "rpc", "laravel-rpc", "laravel-command"],
"license": "Apache-2.0",
"homepage": "https://pm.fresns.org/command-word/",
"support": {
"issues": "https://github.com/fresns/cmd-word-manager/issues",
"source": "https://github.com/fresns/cmd-word-manager",
"docs": "https://pm.fresns.org/command-word/"
},
"authors": [
{
"name": "Jevan Tang",
"email": "[email protected]",
"homepage": "https://github.com/jevantang",
"role": "Creator"
},
{
"name": "mouyong",
"email": "[email protected]",
"homepage": "https://github.com/mouyong",
"role": "Developer"
}
],
"require": {
"php": "^8.0.2",
"fresns/dto": "^1.3",
"laravel/framework": "^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Fresns\\CmdWordManager\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Fresns\\CmdWordManager\\LaravelServiceProvider"
],
"aliases": {
"FresnsCmdWord": "Fresns\\CmdWordManager\\Facades\\FresnsCmdWord"
}
}
}
}