forked from silverstripe/silverstripe-staticpublishqueue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.57 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
{
"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": "^8.1",
"silverstripe/framework": "^5.1",
"silverstripe/cms": "^5",
"silverstripe/config": "^2",
"symbiote/silverstripe-queuedjobs": "^5",
"silverstripe/versioned": "^2"
},
"require-dev": {
"silverstripe/recipe-testing": "^3",
"silverstripe/standards": "^1",
"phpstan/extension-installer": "^1.3"
},
"autoload": {
"psr-4": {
"SilverStripe\\StaticPublishQueue\\": "src/",
"SilverStripe\\StaticPublishQueue\\Test\\": "tests/php/"
},
"files": [
"includes/functions.php"
]
},
"include-path": [
"includes/"
],
"extra": [],
"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
}
}
}