-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.35 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
{
"name": "gentsagency/craft-responsive-images",
"description": "Twig helpers for easy responsive images and optional imgix integration.",
"type": "craft-plugin",
"version": "0.2.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"responsive images"
],
"support": {
"docs": "https://github.com/gentsagency/craft-responsive-images/blob/master/README.md",
"issues": "https://github.com/gentsagency/craft-responsive-images/issues"
},
"license": "MIT",
"authors": [
{
"name": "Pieter Beulque",
"homepage": "https://github.com/pieterbeulque"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"imgix/imgix-php": "^2.1.0"
},
"autoload": {
"psr-4": {
"gentsagency\\responsiveimages\\": "src/"
}
},
"extra": {
"name": "Responsive Images",
"handle": "responsive-images",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/gentsagency/craft-responsive-images/master/CHANGELOG.md",
"components": {
"responsiveImagesService": "gentsagency\\responsiveimages\\services\\ResponsiveImagesService"
},
"class": "gentsagency\\responsiveimages\\ResponsiveImages"
}
}