-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 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
42
43
44
{
"name": "dgjackson/simplesheet",
"description": "Provides an additional Spreadsheet Field Type for Craft CMS.",
"type": "craft-plugin",
"version": "1.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"simplesheet"
],
"support": {
"docs": "https://github.com/digitalbutter/craft-simplesheet",
"source": "https://github.com/digitalbutter/craft-simplesheet",
"issues": "https://github.com/digitalbutter/craft-simplesheet/issues"
},
"license": "MIT",
"authors": [
{
"name": "Digital Butter",
"homepage": "https://github.com/digitalbutter"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"require-dev": {
"craftcms/cms": "^3.2.0",
"vlucas/phpdotenv": "^3.0"
},
"autoload": {
"psr-4": {
"dgjackson\\simplesheet\\": "src/"
}
},
"extra": {
"name": "SimpleSheet",
"handle": "simplesheet",
"developer": "Daniel Jackson",
"developerUrl": "https://github.com/digitalbutter",
"class": "dgjackson\\simplesheet\\SimpleSheet"
}
}