-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
80 lines (80 loc) · 1.98 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pods-framework/pods-gravity-forms",
"description": "Pods Gravity Forms Add-On",
"type": "wordpress-plugin",
"keywords": [
"pods",
"wordpress",
"gravityforms",
"gravity-forms"
],
"homepage": "https://github.com/pods-framework/pods-gravity-forms",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Pods Framework Team",
"email": "contact@pods.io",
"homepage": "https://pods.io/"
},
{
"name": "Scott Kingsley Clark",
"email": "scott@pods.io",
"homepage": "https://www.scottkclark.com/",
"role": "Lead Developer"
},
{
"name": "Naomi C. Bush | gravity+",
"email": "naomi@gravityplus.pro",
"homepage": "https://gravityplus.pro",
"role": "Contributing Developer"
}
],
"support": {
"issues": "https://github.com/pods-framework/pods-gravity-forms/issues",
"forum": "https://wordpress.org/support/plugin/pods-gravity-forms",
"source": "https://github.com/pods-framework/pods-gravity-forms"
},
"autoload": {
"psr-4": {
"Pods\\GF\\": "tests/integration/Pods/GF/",
"Pods\\GF\\Tests\\": "tests/_support/"
}
},
"require": {
"composer/installers": "2.2.*",
"erusev/parsedown": "^1.7.4",
"php": ">=7.2"
},
"require-dev": {
"brianhenryie/strauss": "*"
},
"scripts": {
"prefix-namespaces": [
"strauss"
],
"post-install-cmd": [
"@prefix-namespaces"
],
"post-update-cmd": [
"@prefix-namespaces"
]
},
"extra": {
"installer-name": "pods-gravity-forms",
"strauss": {
"target_directory": "vendor-prefixed",
"namespace_prefix": "Pods_Gravity_Forms\\Prefixed\\",
"classmap_prefix": "Pods_Gravity_Forms__Prefixed__",
"constant_prefix": "PODS_GRAVITY_FORMS_PREFIXED_",
"function_prefix": "pods_gravity_forms_prefixed_",
"packages": [
"erusev/parsedown"
]
}
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}