-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
55 lines (55 loc) · 1.38 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
53
54
55
{
"name": "ttempleton/craft-nocache",
"description": "A Twig extension to escape caching inside cache blocks",
"version": "3.0.4",
"type": "craft-plugin",
"keywords": [
"cms",
"craftcms",
"plugin"
],
"license": "MIT",
"authors": [
{
"name": "Thomas Templeton",
"homepage": "https://github.com/ttempleton"
}
],
"require": {
"craftcms/cms": "^4.0.0|^5.0.0-alpha",
"php": "^8.0.2"
},
"support": {
"issues": "https://github.com/ttempleton/craft-nocache/issues",
"source": "https://github.com/ttempleton/craft-nocache",
"rss": "https://github.com/ttempleton/craft-nocache/commits/master.atom"
},
"autoload": {
"psr-4": {
"ttempleton\\nocache\\": "src/"
}
},
"extra": {
"handle": "nocache",
"name": "No-Cache",
"class": "ttempleton\\nocache\\Plugin",
"changelogUrl": "https://github.com/ttempleton/craft-nocache/blob/master/CHANGELOG.md",
"downloadUrl": "https://github.com/ttempleton/craft-nocache/archive/refs/tags/3.0.4.zip"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main",
"craftcms/ecs": "dev-main"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
}
}