-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·50 lines (50 loc) · 1.24 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": "liuyuanjun/yii2-extensions",
"description": "Some extensions for Yii2.",
"type": "library",
"require": {
"php": ">=7.1",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"yiisoft/yii2": ">=2.0.47",
"liuyuanjun/yii2-softdelete": ">=1.1",
"yiisoft/yii2-redis": "^2.0",
"symfony/var-dumper": "^5.3",
"guzzlehttp/guzzle": "^7.3",
"aliyuncs/oss-sdk-php": "^2.4",
"phpoffice/phpspreadsheet": "^1.18",
"alibabacloud/sdk": "^1.8",
"fakerphp/faker": "^1.15",
"mobiledetect/mobiledetectlib": "^2.8",
"vlucas/phpdotenv": "^5.5"
},
"license": "MIT",
"authors": [
{
"name": "LiuYuanjun",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"liuyuanjun\\yii2\\": "src/"
},
"files": [
"src/functions.php"
]
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}