-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.13 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.13 KB
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
{
"name": "fractorr/svg",
"description": "Convert SVG Images",
"type": "craft-plugin",
"version": "1.0.5",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"svg"
],
"support": {
"docs": "https://github.com/fractorr/svg/blob/master/README.md",
"issues": "https://github.com/fractorr/svg/issues"
},
"license": "MIT",
"authors": [
{
"name": "Trevor Orr",
"homepage": "http://www.fractorr.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"fractorr\\svg\\": "src/"
}
},
"extra": {
"name": "Svg",
"handle": "svg",
"schemaVersion": "1.0.0",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/fractorr/svg/master/CHANGELOG.md",
"components": {
"svgService": "fractorr\\svg\\services\\SvgService"
},
"class": "fractorr\\svg\\Svg"
}
}