-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.19 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
{
"name": "ForwardJumpMarketingLLC/forwardjump-utility-core",
"description": "This plugin combines functionality we use on multiple sites.",
"keywords": [
"wordpress"
],
"type": "wordpress-plugin",
"license": "GPL-3.0+",
"authors": [
{
"name": "Tim Jensen",
"homepage": "https://www.timjensen.us/",
"role": "Developer"
}
],
"require": {
"php": ">=5.6",
"webdevstudios/cmb2": "^2.2",
"composer/installers": "~1.0",
"timothyjensen/acf-field-group-values": "^2.0"
},
"extra": {
"installer-paths": {
"vendor/CMB2/": [
"webdevstudios/cmb2"
]
}
},
"autoload": {
"psr-4": {
"ForwardJump\\Utility\\": "src/"
},
"files": [
"src/functions/apply-settings.php",
"src/functions/enqueue.php",
"src/functions/formatting.php",
"src/functions/gravity-forms.php",
"src/functions/helper-functions.php",
"src/functions/plugin.php",
"src/settings-page/module.php",
"src/shortcodes/module.php"
]
}
}