-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
54 lines (54 loc) · 1.32 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": "silverstripe-terraformers/embargo-expiry",
"description": "Simple embargo & expiry for Site Tree",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe", "embargo", "expiry", "publish", "unpublish"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Chris Penny",
"email": "[email protected]"
},
{
"name": "Silverstripe Terraformers",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/silverstripe-terraformers/embargo-expiry/issues"
},
"require": {
"php": "^8",
"silverstripe/cms": "^5",
"symbiote/silverstripe-queuedjobs": "^5",
"opis/closure": "^3.6"
},
"require-dev": {
"silverstripe/recipe-testing": "^3",
"tractorcow/silverstripe-fluent": "^7",
"slevomat/coding-standard": "~8.0.0"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"Terraformers\\EmbargoExpiry\\": "src/",
"Terraformers\\EmbargoExpiry\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"silverstripe/recipe-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}