-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.08 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
{
"name": "christopherdowson/sha512twigfilter",
"description": "A filter for twig to hash a string with sha512",
"type": "craft-plugin",
"version": "4.0.4",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"sha512 twig filter"
],
"support": {
"docs": "https://myfirstraygun.studio/",
"issues": "https://myfirstraygun.studio/"
},
"license": "MIT",
"authors": [
{
"name": "Christopher Dowson",
"homepage": "https://myfirstraygun.studio/"
}
],
"require": {
"craftcms/cms": "^3.0.0|^4.0.0"
},
"autoload": {
"psr-4": {
"christopherdowson\\sha512twigfilter\\": "src/"
}
},
"extra": {
"name": "sha512 Twig Filter",
"handle": "sha512-twig-filter",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://github.com/christopherdowson/SHA512TwigFilter/blob/master/CHANGELOG.md",
"class": "christopherdowson\\sha512twigfilter\\sha512TwigFilter"
}
}