-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
66 lines (66 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "sdailover/yii2-phpsessconnector",
"description": "The SDaiLover PHP Session Connector extension for the Yii framework",
"keywords": [
"sdailover",
"yii2",
"phpsessconnector",
"active-record",
"connection"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"homepage": "https://www.sdailover.com/",
"issues": "https://github.com/sdailover/yii2-phpsessconnector/issues",
"source": "https://github.com/sdailover/yii2-phpsessconnector"
},
"authors": [
{
"name": "Stephanus Bagus Saputra ( 戴 Dai 偉 Wie 峯 Funk )",
"email": "[email protected]",
"homepage": "https://stephanusdai.web.id/"
}
],
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/sdailover"
},
{
"type": "github",
"url": "https://github.com/sponsors/sdailover"
},
{
"type": "opencollective",
"url": "https://opencollective.com/sdailover"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"ext-json": "*",
"yiisoft/yii2": "^2.0.42"
},
"require-dev": {
"cweagans/composer-patches": "^1.7",
"yiisoft/yii2-coding-standards": "~2.0"
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"yiisoft/yii2-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"sdailover\\yii\\phpsessconnector\\": "src"
}
}
}