This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
60 lines (60 loc) · 1.68 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "workingconcept/craft-lever",
"description": "Lever + Craft CMS.",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"lever"
],
"support": {
"docs": "https://github.com/workingconcept/lever-craft-plugin/blob/main/README.md",
"issues": "https://github.com/workingconcept/lever-craft-plugin/issues"
},
"license": "MIT",
"authors": [
{
"name": "Working Concept",
"homepage": "https://workingconcept.com"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"workingconcept\\lever\\": "src/"
}
},
"extra": {
"name": "Lever",
"handle": "lever",
"schemaVersion": "1.0.0",
"changelogUrl": "https://github.com/workingconcept/lever-craft-plugin/blob/main/CHANGELOG.md",
"components": {
"leverService": "workingconcept\\lever\\services\\leverService"
},
"class": "workingconcept\\lever\\Lever",
"downloadUrl": "https://github.com/workingconcept/lever-craft-plugin/archive/main.zip",
"developer": "Working Concept",
"developerUrl": "https://workingconcept.com/"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main",
"phpstan/phpstan": "^1.8",
"craftcms/phpstan": "dev-main"
}
}