forked from plainlanguage/craft-plain-ics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·42 lines (42 loc) · 1.19 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
{
"name": "plainlanguage/craft-plain-ics",
"description": "A Craft CMS plugin that implements the eluceo/iCal package for creating ICS files in your Twig templates.",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"ics"
],
"support": {
"docs": "https://github.com/plainlanguage/craft-plain-ics/blob/README.md",
"issues": "https://github.com/plainlanguage/craft-plain-ics/issues"
},
"license": "MIT",
"authors": [
{
"name": "Plain Language",
"homepage": "http://plainlanguage.co/"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"eluceo/ical": "0.13.0"
},
"autoload": {
"psr-4": {
"plainlanguage\\plainIcs\\": "src/"
}
},
"extra": {
"name": "Plain ICS.",
"handle": "plain-ics",
"schemaVersion": "1.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/plainlanguage/craft-plain-ics/CHANGELOG.md",
"class": "plainlanguage\\plainIcs\\PlainIcs"
}
}