-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
50 lines (50 loc) · 1.43 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
48
49
50
{
"name": "fresns/plugin-manager",
"type": "library",
"description": "Enhance Laravel Apps: Organized & Scalable",
"keywords": ["laravel", "laravel-package", "laravel-modules", "laravel-application", "laravel-plugin", "laravel-apps", "laravel-extensions"],
"license": "Apache-2.0",
"homepage": "https://pm.fresns.org",
"support": {
"issues": "https://github.com/fresns/plugin-manager/issues",
"source": "https://github.com/fresns/plugin-manager",
"docs": "https://pm.fresns.org"
},
"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"
}
],
"bin": [
"bin/fresns",
"bin/plugin"
],
"require": {
"php": "^8.0.2",
"laravel/framework": "^9.0|^10.0|^11.0",
"wikimedia/composer-merge-plugin": "dev-master",
"nelexa/zip": "^4.0"
},
"require-dev": {},
"autoload": {
"psr-4": {
"Fresns\\PluginManager\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Fresns\\PluginManager\\Providers\\PluginServiceProvider"
]
}
}
}