-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
42 lines (42 loc) · 1.25 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
{
"name": "symbiote/silverstripe-usertemplates",
"description": "Provides user-definable templates within the CMS that can be applied to content trees. Allows specification of Layout and main templates, as well as associating css + js files",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"templates",
"themes"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Marcus Nyeholt",
"email": "[email protected]"
}
],
"require": {
"silverstripe/cms": "^4 || ^5",
"symbiote/silverstripe-multivaluefield": "^5 || ^6",
"silverstripe/asset-admin": "^1 || ^2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3",
"phpunit/phpunit": "^9"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Symbiote\\UserTemplates\\": "src/",
"Symbiote\\UserTemplates\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.4.x-dev"
}
},
"support": {
"issues": "https://github.com/nyeholt/silverstripe-usertemplates/issues"
},
"homepage": "https://github.com/nyeholt/silverstripe-usertemplates"
}