-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
29 lines (29 loc) · 1.11 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
{
"name": "putyourlightson/craft-redactor-aria-label",
"description": "Adds an Aria Label to the Redactor plugin's link module.",
"version": "1.0.1",
"type": "craft-plugin",
"license": "mit",
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"putyourlightson\\redactorarialabel\\": "src/"
}
},
"support": {
"docs": "https://github.com/putyourlightson/craft-redactor-aria-label",
"source": "https://github.com/putyourlightson/craft-redactor-aria-label",
"issues": "https://github.com/putyourlightson/craft-redactor-aria-label/issues"
},
"extra": {
"name": "Redactor Aria Label",
"handle": "redactor-aria-label",
"developer": "PutYourLightsOn",
"developerUrl": "https://putyourlightson.com/",
"documentationUrl": "https://github.com/putyourlightson/craft-redactor-aria-label",
"changelogUrl": "https://raw.githubusercontent.com/putyourlightson/craft-redactor-aria-label/v1/CHANGELOG.md",
"class": "putyourlightson\\redactorarialabel\\RedactorAriaLabel"
}
}