-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (39 loc) · 958 Bytes
/
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
{
"name": "vaersaagod/cloudflaremate",
"description": "Are your clouds flaring up again, mate?",
"type": "craft-plugin",
"version": "1.0.2",
"require": {
"php": ">=8.1",
"craftcms/cms": "^4.7.0"
},
"autoload": {
"psr-4": {
"vaersaagod\\cloudflaremate\\": "src/"
}
},
"license": "MIT",
"extra": {
"handle": "_cloudflaremate",
"name": "CloudflareMate",
"developer": "Værsågod",
"documentationUrl": "",
"class": "vaersaagod\\cloudflaremate\\CloudflareMate"
},
"authors": [
{
"name": "Værsågod",
"homepage": "https://www.vaersaagod.no/"
}
],
"config": {
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}