-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
58 lines (58 loc) · 1.89 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
56
57
58
{
"name": "acalvino4/craft-easy-image",
"description": "Maximally optimized images with minimal config",
"type": "craft-plugin",
"license": "mit",
"support": {
"issues": "https://github.com/acalvino4/craft-easy-image/issues?state=open",
"source": "https://github.com/acalvino4/craft-easy-image",
"docs": "https://github.com/acalvino4/craft-easy-image",
"rss": "https://github.com/acalvino4/craft-easy-image/releases.atom"
},
"require": {
"php": ">=8.2",
"craftcms/cms": "^5.0.0",
"dodecastudio/craft-blurhash": "^3.0.0"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-phpbrowser": "^3.0",
"codeception/module-yii2": "^1.1",
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main",
"vlucas/phpdotenv": "^5.5"
},
"autoload": {
"psr-4": {
"acalvino4\\easyimage\\": "src/",
"Tests\\": "tests/"
}
},
"extra": {
"handle": "easy-image",
"name": "Easy Image",
"developer": "acalvino4",
"documentationUrl": "https://github.com/acalvino4/craft-easy-image",
"class": "acalvino4\\easyimage\\Plugin"
},
"scripts": {
"test": "ecs check --ansi && phpstan --memory-limit=1G && codecept run Unit",
"test-cov": "XDEBUG_MODE=coverage codecept run Unit --coverage --coverage-xml --coverage-html",
"fix": "ecs check --ansi --fix"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.3"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"treeware/plant": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}