-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
38 lines (38 loc) · 981 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
{
"name": "clubstudioltd/craft-asset-rev",
"description": "A plugin to aid cache-busting",
"version": "8.0.0",
"type": "craft-plugin",
"license": "MIT",
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "^9.0",
"phpunit/php-token-stream": "<2"
},
"autoload": {
"psr-4": {
"club\\assetrev\\": "src/"
}
},
"extra": {
"name": "Asset Rev",
"handle": "assetrev",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://github.com/clubstudioltd/craft-asset-rev/blob/master/CHANGELOG.md",
"documentationUrl": "https://github.com/clubstudioltd/craft-asset-rev",
"developer": "Club Studio Ltd",
"developerUrl": "https://clubstudio.co.uk",
"class": "club\\assetrev\\AssetRev"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}