-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.43 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": "marionnewlevant/picture",
"description": "Generate responsive <picture> and <img> elements based on configuration.",
"version": "5.0.0",
"type": "craft-plugin",
"keywords": [
"craft",
"craftcms",
"plugin",
"picture",
"srcset",
"lazysizes",
"img"
],
"support": {
"docs": "https://github.com/craft-picture/picture/blob/v5/README.md",
"issues": "https://github.com/craft-picture/picture/issues"
},
"license": "MIT",
"authors": [
{
"name": "Marion Newlevant",
"homepage": "http://marion.newlevant.com"
}
],
"require": {
"craftcms/cms": "^5.0"
},
"autoload": {
"psr-4": {
"marionnewlevant\\picture\\": "src/"
}
},
"extra": {
"handle": "picture",
"name": "Picture",
"schemaVersion": "2.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"documentationUrl": "https://github.com/marionnewlevant/craft-picture/blob/v5/README.md",
"changelogUrl": "https://raw.githubusercontent.com/marionnewlevant/craft-picture/v5/CHANGELOG.md",
"components": {
"pictureService": "marionnewlevant\\picture\\services\\PictureService"
},
"class": "marionnewlevant\\picture\\Picture"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/phpstan": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}