-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.07 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
{
"name": "dnadesign/silverstripe-elemental-workingdays-calculator",
"description": "Element outputting the next working day date with optional interval",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "element", "elemental", "content blocks"],
"license": "BSD-3-Clause",
"authors": [{
"name": "Alexandre Saelens",
"email": "[email protected]"
}],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"dnadesign/silverstripe-elemental": ">=3.0 || >= 4.0",
"silverstripe/vendor-plugin": "^1.0 || ^2.0",
"unclecheese/display-logic": "^2 || ^3",
"guzzlehttp/guzzle": "^6.3.3 || ^7"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"DNADesign\\ElementWorkingDaysCalculator\\": "src/",
"DNADesign\\ElementWorkingDaysCalculator\\Tests\\": "tests/php/"
}
}
}