-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
49 lines (49 loc) · 1.22 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": "kisonay/craft-twig-imagebase64",
"description": "Base64 encode images within twig templates.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft-twig-imagebase64"
],
"support": {
"docs": "https://github.com/kisonay/craft-twig-imagebase64/blob/master/README.md",
"issues": "https://github.com/kisonay/craft-twig-imagebase64/issues"
},
"license": "MIT",
"authors": [{
"name": "kisonay",
"homepage": "https://github.com/kisonay/"
}],
"require": {
"php": "^8.0",
"craftcms/cms": "^4.0"
},
"require-dev": {
"craftcms/rector": "dev-main"
},
"autoload": {
"psr-4": {
"kisonay\\crafttwigimagebase64\\": "src/"
}
},
"extra": {
"name": "Image Base64",
"handle": "craft-twig-imagebase64",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/kisonay/craft-twig-imagebase64/master/CHANGELOG.md",
"class": "kisonay\\crafttwigimagebase64\\Crafttwigimagebase64"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}