forked from philippfrenzel/yii2fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.18 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
{
"name": "metola/yii2fullcalendar",
"description": "Yii2 fullcalendar Widgets",
"keywords": ["yii2", "fullcalendar","widget"],
"type": "yii2-extension",
"license": "MIT",
"authors": [
{
"name": "Alejandro Metola",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/metola/yii2fullcalendar"
},
"minimum-stability": "dev",
"require": {
"yiisoft/yii2" : "*",
"yiisoft/yii2-jui" : "*",
"bower-asset/fullcalendar" : "^3.8.1@stable",
"bower-asset/fullcalendar-scheduler" : "^1.9.4@stable"
},
"require-dev": {
"codeception/codeception": "*"
},
"autoload": {
"psr-4": { "yii2fullcalendar\\": "" }
},
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false,
"installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
},
"extra": {
"installer-types": ["bower-asset", "npm-asset"],
"installer-paths": {
"public/assets/{$vendor}/{$name}/": ["type:bower-asset", "type:npm-asset"]
}
}
}