forked from workingconcept/lever-craft-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.41 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
46
47
48
49
{
"name": "workingconcept/craft-lever",
"description": "Lever + Craft CMS.",
"type": "craft-plugin",
"version": "1.0.4",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"lever"
],
"support": {
"docs": "https://github.com/workingconcept/lever-craft-plugin/blob/master/readme.md",
"issues": "https://github.com/workingconcept/lever-craft-plugin/issues"
},
"license": "MIT",
"authors": [
{
"name": "Working Concept",
"homepage": "https://workingconcept.com"
}
],
"require": {
"php": "^7.0.0",
"craftcms/cms": "^3.0.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"workingconcept\\lever\\": "src/"
}
},
"extra": {
"name": "Lever",
"handle": "lever",
"schemaVersion": "1.0.0",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://github.com/workingconcept/lever-craft-plugin/blob/master/changelog.md",
"components": {
"leverService": "workingconcept\\lever\\services\\leverService"
},
"class": "workingconcept\\lever\\Lever",
"downloadUrl": "https://github.com/workingconcept/lever-craft-plugin/archive/master.zip",
"developer": "Working Concept",
"developerUrl": "https://workingconcept.com/"
}
}