-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.39 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
{
"name": "daryl-peterson/drp-proclaim-sermon-manager",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "daryl-peterson",
"email": "daryl.peterson@gmail.com",
"homepage": "https://wordpress.com/home/dpeterson1971.wordpress.com",
"role": "Developer"
}
],
"keywords": [
"wordpress",
"plugin",
"sermons",
"sermon manager"
],
"homepage": "https://github.com/daryl-peterson/drp-proclaim-sermon-manager",
"autoload": {
"psr-4": {
"DRPPSM\\": "src/",
"DRPPSM\\Abstracts\\": "src/Core/Abstracts",
"DRPPSM\\Constants\\": "src/Core/Constants",
"DRPPSM\\Exceptions\\": "src/Core/Exceptions",
"DRPPSM\\Interfaces\\": "src/Core/Interfaces",
"DRPPSM\\Logging\\": "src/Core/Logging",
"DRPPSM\\Traits\\": "src/Core/Traits",
"DRPPSM\\Tests\\": "tests/unit/"
},
"files": [
"src/Core/Functions/core.php",
"src/Core/Functions/defines.php",
"src/Core/Functions/misc.php",
"src/Core/Functions/include.php",
"src/Core/Functions/database.php",
"src/Core/Functions/templates.php"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/daryl-peterson/drp-proclaim-sermon-manager.git"
}
],
"classmap-authoritative": true,
"require": {
"php": ">8.1",
"cmb2/cmb2": "^2.11"
},
"config": {
"vendor-dir": "lib",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}