-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
49 lines (49 loc) · 1.38 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
{
"name": "thesceneman/silverstripe-glossary",
"description": "Adds a Glossary section to CMS admin where glossary terms can be defined. These terms can then be added to content via the WYSIWYG and the definitions will be rendered as interactive rollovers within webpage content.",
"type": "silverstripe-vendormodule",
"authors": [
{
"name": "Melissa Wu",
"email": "[email protected]"
},
{
"name": "Adrian Jimson",
"email": "[email protected]"
}
],
"keywords": [
"silverstripe",
"CMS",
"Glossary",
"Dictionary",
"Terminology"
],
"license": "BSD-3-Clause",
"require": {
"silverstripe/framework": "^5.0",
"silverstripe/admin": "^2.0",
"symbiote/silverstripe-gridfieldextensions": "^4",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"TheSceneman\\SilverStripeGlossary\\": "src/",
"TheSceneman\\SilverStripeGlossary\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"expose": [
"client/dist"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}