-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.27 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
{
"name": "flowsa/cachebuster",
"description": "Cache busting to ensure effective resource availability",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"cachebuster"
],
"license": "MIT",
"authors": [
{
"name": "Flowsa",
"homepage": "https://flowsa.com"
}
],
"support": {
"email": "admin@flowsa.com",
"issues": "https://github.com/developer/repo/issues?state=open",
"source": "https://github.com/developer/repo",
"docs": "https://github.com/developer/repo/blob/master/README.md"
},
"require": {
"craftcms/cms": "^4.3.2|^5.0"
},
"autoload": {
"psr-4": {
"cachebuster\\cachebuster\\": "src/"
}
},
"extra": {
"name": "Flowsa Cachebuster",
"handle": "flowsa-cachebuster",
"developer": "Felix Mensah",
"developerUrl": "https://github.com/flowsa",
"class": "cachebuster\\cachebuster\\Cachebuster"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}