-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 888 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 888 Bytes
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
{
"name": "tenthpres/touchpoint-wp",
"description": "A WordPress Plugin for integrating with TouchPoint Church Management Software.",
"license": "AGPL-3.0-or-later",
"type": "wordpress-plugin",
"version": "0.0.37",
"keywords": [
"wordpress",
"wp",
"TouchPoint",
"ChMS",
"Church Management"
],
"authors": [
{
"name": "James K.",
"email": "jkrrv@jkrrv.org"
}
],
"support": {
"issues": "https://github.com/TenthPres/TouchPoint-WP/issues"
},
"autoload": {
"psr-4": {
"tp\\TouchPointWP\\": "src/TouchPoint-WP",
"tp\\TouchPointWP\\Utilities\\": "src/TouchPoint-WP/Utilities"
}
},
"require": {
"php": ">=7.4.0",
"composer/installers": "~1.0",
"ext-json": "*",
"ext-zip": "*"
},
"require-dev": {
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}