-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
41 lines (41 loc) · 1.17 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
{
"name": "aelvan/focal-point-field",
"description": "A utility plugin for migrating the Craft 2 focal point field to the native Craft 3 functionality.",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"focal point field"
],
"support": {
"docs": "https://github.com/aelvan/focal-point-field/blob/master/README.md",
"issues": "https://github.com/aelvan/focal-point-field/issues"
},
"license": "MIT",
"authors": [
{
"name": "André Elvan",
"homepage": "http://www.vaersaagod.no"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"aelvan\\focalpointfield\\": "src/"
}
},
"extra": {
"name": "Focal Point Field",
"handle": "focal-point-field",
"schemaVersion": "2.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/aelvan/focal-point-field/master/CHANGELOG.md",
"class": "aelvan\\focalpointfield\\FocalPointFieldPlugin"
}
}