-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
52 lines (52 loc) · 1.37 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
{
"name": "verbb/prism",
"description": "Adds a new field type that provides syntax highlighting capabilities using PrismJS.",
"type": "craft-plugin",
"version": "4.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"prism syntax highlighting",
"syntax",
"highlighting"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/verbb/prism/issues?state=open",
"source": "https://github.com/verbb/prism",
"docs": "https://github.com/verbb/prism",
"rss": "https://github.com/verbb/prism/commits/v2.atom"
},
"license": "MIT",
"authors": [
{
"name": "Verbb",
"homepage": "https://verbb.io"
},
{
"name": "Josh Smith <[email protected]>",
"homepage": "https://www.joshsmith.dev"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"verbb/base": "^3.0.0"
},
"require-dev": {
"prismjs/prism": "^1.16"
},
"autoload": {
"psr-4": {
"verbb\\prism\\": "src/"
}
},
"extra": {
"name": "Prism",
"handle": "prism",
"changelogUrl": "https://raw.githubusercontent.com/verbb/prism/craft-5/CHANGELOG.md",
"class": "verbb\\prism\\Prism"
}
}