-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.13 KB
/
composer.json
File metadata and controls
41 lines (41 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
{
"name": "markdrzy/importable",
"description": "Add CSV data import functionality to the native Table fieldtype.",
"type": "craft-plugin",
"version": "1.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"importable"
],
"support": {
"docs": "https://github.com/markdrzy/craft3-importable/blob/master/README.md",
"issues": "https://github.com/markdrzy/craft3-importable/issues"
},
"license": "MIT",
"authors": [
{
"name": "Mark Drzycimski",
"homepage": "https://clickrain.com/about/mark-drzycimski"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"markdrzy\\importable\\": "src/"
}
},
"extra": {
"name": "Importable",
"handle": "importable",
"schemaVersion": "1.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/markdrzy/craft3-importable/master/CHANGELOG.md",
"class": "markdrzy\\importable\\Importable"
}
}