-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.52 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.52 KB
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
{
"name": "dynamic/silverstripe-calendar",
"description": "A calendar module for the SilverStripe CMS.",
"license": "BSD-3-Clause",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"module",
"calendar",
"events"
],
"authors": [
{
"name": "Dynamic Inc",
"email": "dev@dyamicagency.com",
"homepage": "http://www.dynamicagency.com"
}
],
"require": {
"dft/silverstripe-frontend-multiselectfield": "^1.0",
"nesbot/carbon": "^3.0",
"ryanpotter/silverstripe-color-field": "^1.0",
"silverstripe/cms": "^5.0",
"silverstripe/lumberjack": "^3.0",
"symbiote/silverstripe-gridfieldextensions": "^4.0",
"symbiote/silverstripe-queuedjobs": "^5.0",
"unclecheese/display-logic": "^3.0"
},
"require-dev": {
"cambis/silverstan": "^2.1",
"phpstan/extension-installer": "^1.3",
"silverstripe/recipe-testing": "^3",
"squizlabs/php_codesniffer": "^3.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dynamic\\Calendar\\": "src/",
"Dynamic\\Calendar\\Tests\\": "tests/"
}
},
"extra": {
"expose": [
"client/dist"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"silverstripe/recipe-plugin": true
}
}
}