-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·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": "craftpulse/craft-next-up",
"description": "Get the next upcoming event date from the matrix",
"type": "craft-plugin",
"version": "1.0.4",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"next up"
],
"support": {
"docs": "https://github.com/percipioglobal/next-up/blob/master/README.md",
"issues": "https://github.com/percipioglobal/next-up/issues"
},
"license": "MIT",
"authors": [
{
"name": "Percipio.london",
"homepage": "https://percipio.london/"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"percipiolondon\\nextup\\": "src/"
}
},
"extra": {
"name": "Next Up",
"handle": "next-up",
"developer": "Percipio.london",
"developerUrl": "https://percipio.london/",
"documentationUrl": "https://github.com/percipioglobal/next-up/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/percipioglobal/next-up/master/CHANGELOG.md",
"class": "percipiolondon\\nextup\\NextUp"
}
}