forked from verbb/prism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.35 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
{
"name": "thejoshsmith/craft-prism-syntax-highlighting",
"description": "Adds a new field type that provides syntax highlighting capabilities using PrismJS.",
"type": "craft-plugin",
"version": "1.0.5",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"prism syntax highlighting",
"syntax",
"highlighting"
],
"support": {
"docs": "https://github.com/thejoshsmith/prism-syntax-highlighting/blob/master/README.md",
"issues": "https://github.com/thejoshsmith/prism-syntax-highlighting/issues"
},
"license": "MIT",
"authors": [
{
"name": "Josh Smith <[email protected]>",
"homepage": "https://www.joshsmith.dev"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"thejoshsmith\\prismsyntaxhighlighting\\": "src/"
}
},
"extra": {
"name": "Prism Syntax Highlighting",
"handle": "craft-prism-syntax-highlighting",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/thejoshsmith/prism-syntax-highlighting/master/CHANGELOG.md",
"class": "thejoshsmith\\prismsyntaxhighlighting\\Plugin"
},
"require-dev": {
"prismjs/prism": "^1.16"
}
}