-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
51 lines (51 loc) · 1.29 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
{
"name": "venveo/craft-compress",
"description": "Create smart zip files from Craft assets on the fly",
"type": "craft-plugin",
"version": "5.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"compress"
],
"support": {
"docs": "https://github.com/venveo/craft-compress/blob/master/README.md",
"issues": "https://github.com/venveo/craft-compress/issues"
},
"license": "MIT",
"authors": [
{
"name": "Venveo",
"homepage": "https://www.venveo.com"
}
],
"require": {
"php": "^8.2|^9.0",
"craftcms/cms": "^5.0"
},
"autoload": {
"psr-4": {
"venveo\\compress\\": "src/"
}
},
"extra": {
"name": "Compress",
"handle": "compress",
"changelogUrl": "https://raw.githubusercontent.com/venveo/craft-compress/master/CHANGELOG.md",
"class": "venveo\\compress\\Compress"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}