forked from mineadmin/AppStore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 824 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
37
38
{
"name": "mineadmin/app-store",
"description": "Mineadmin 2.0 AppStore Extension",
"type": "library",
"require": {
"hyperf/translation": "~3.1.0",
"nette/utils": "dev-master",
"ext-zip": "*"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Mine\\AppStore\\": "src/"
}
},
"authors": [
{
"name": "xmo",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "zds",
"email": "[email protected]",
"role": "Developer"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"hyperf": {
"config": "Mine\\AppStore\\ConfigProvider"
}
}
}