-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·45 lines (45 loc) · 1.44 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
45
{
"name": "therefinery/craft-cms-contests",
"description": "This is a plugin that allows you to run contests with voting in your CraftCMS site",
"type": "craft-plugin",
"version": "4.0.5",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craftcms contests"
],
"support": {
"docs": "https://github.com/the-refinery/contests-craft3-plugin/craft-cms-contests/blob/master/README.md",
"issues": "https://github.com/the-refinery/contests-craft3-plugin/craft-cms-contests/issues"
},
"license": "MIT",
"authors": [
{
"name": "The Refinery",
"homepage": "https://the-refinery.io"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"google/recaptcha": "^1.2"
},
"autoload": {
"psr-4": {
"therefinery\\craftcmscontests\\": "src/"
}
},
"extra": {
"name": "CraftCMS Contests",
"handle": "craft-cms-contests",
"developer": "The Refinery",
"developerUrl": "https://the-refinery.io",
"documentationUrl": "https://github.com/https://github.com/the-refinery/contests-craft3-plugin/craft-cms-contests/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/https://github.com/the-refinery/contests-craft3-plugin/craft-cms-contests/master/CHANGELOG.md",
"components": {
"craftcmsContestsService": "therefinery\\craftcmscontests\\services\\CraftcmsContestsService"
},
"class": "therefinery\\craftcmscontests\\CraftcmsContests"
}
}