-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
54 lines (54 loc) · 1.48 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
{
"name": "dynamic/silverstripe-calendar",
"description": "A calendar module for the SilverStripe CMS.",
"keywords": [
"silverstripe",
"module",
"calendar",
"events"
],
"license": "BSD-3-Clause",
"type": "silverstripe-vendormodule",
"require": {
"nesbot/carbon": "^1.0 || ^2.0",
"rlanvin/php-rrule": "^2.2",
"silverstripe/cms": "^4.0",
"silverstripe/lumberjack": "^2.0",
"symbiote/silverstripe-gridfieldextensions": "^3.0",
"symbiote/silverstripe-queuedjobs": "^4.4",
"unclecheese/display-logic": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^3.0",
"phploc/phploc": "^4.0",
"pdepend/pdepend": "^2.5",
"theseer/phpdox": "^0.11.0"
},
"autoload": {
"psr-4": {
"Dynamic\\Calendar\\": "src/",
"Dynamic\\Calendar\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Dynamic Inc",
"email": "[email protected]",
"homepage": "http://www.dynamicagency.com"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true
}