forked from silverstripe/silverstripe-staticpublishqueue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.58 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
55
56
57
58
59
60
61
{
"name": "silverstripe/staticpublishqueue",
"description": "Static publishing queue to create static versions of pages for enhanced performance and security",
"license": "BSD-3-Clause",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"static",
"html",
"security",
"performance",
"static-publishing",
"caching",
"cache",
"static-caching",
"static-cache",
"queue",
"publishing"
],
"require": {
"php": "^7.4 || ^8.0",
"silverstripe/framework": "^4.6",
"silverstripe/cms": "^4",
"silverstripe/config": "^1",
"symbiote/silverstripe-queuedjobs": "^4.5",
"silverstripe/versioned": "^1.6"
},
"require-dev": {
"silverstripe/recipe-testing": "^2"
},
"autoload": {
"psr-4": {
"SilverStripe\\StaticPublishQueue\\": "src/",
"SilverStripe\\StaticPublishQueue\\Test\\": "tests/php/"
},
"files": [
"includes/functions.php"
]
},
"include-path": [
"includes/"
],
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
},
"scripts": {
"lint": "phpcs -s src/ tests/php/",
"lint-clean": "phpcbf src/ tests/php/"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
}
}
}