-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.12 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": "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": "SilverStripe Ltd"
},
{
"name": "Silverstripe Terraformers",
"email": "terraformers@silverstripe.com"
}
],
"support": {
"issues": "https://github.com/silverstripe-terraformers/embargo-expiry/issues"
},
"require": {
"php": "^7.1",
"silverstripe/vendor-plugin": "^1.0",
"silverstripe/framework": "^4@dev",
"silverstripe/cms": "^4@dev",
"symbiote/silverstripe-queuedjobs": "^4.0.0",
"jeremeamia/superclosure": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"tractorcow/silverstripe-fluent": "^4.2.0"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"Terraformers\\EmbargoExpiry\\": "src/",
"Terraformers\\EmbargoExpiry\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}