-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 889 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 889 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
{
"name": "fooplugins/fooconvert",
"description": "Turning clicks into conversions, visitors into customers – the ultimate catalyst for online success!",
"type": "wordpress-plugin",
"autoload" : {
"psr-4" : {
"FooPlugins\\FooConvert\\" : "includes/",
"FooPlugins\\FooConvert\\Pro\\" : "pro/includes/"
}
},
"extra": {
"installer-paths": {
"vendor/{$name}/": ["type:wordpress-plugin"]
}
},
"license": "GPL-3.0-only",
"authors": [
{
"name": "Brad Vincent"
},
{
"name": "Steve Usher"
}
],
"config": {
"allow-plugins": {
"composer/installers": true
}
},
"require": {
"php": ">=7.4",
"composer/installers": "v1.12.0",
"freemius/wordpress-sdk": "^2.13.1"
}
}