-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (63 loc) · 1.32 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
{
"name": "thanks-to-it/easy-referral-for-woocommerce",
"type": "wordpress-plugin",
"description": "Referral System for WooCommerce",
"keywords": [
"wordpress",
"woocommerce",
"referral",
"affiliates"
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/thanks-to-it/wp-design-patterns"
},
{
"type": "vcs",
"url": "https://github.com/thanks-to-it/extended-wp"
}
],
"license": "MIT",
"authors": [
{
"name": "Pablo Pacheco",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"vendor-dir": "src/vendor"
},
"require": {
"php": ">=5.6.0",
"composer/installers": ">=v1.2.0",
"thanks-to-it/extended-wp":"dev-master",
"thanks-to-it/wp-design-patterns": "dev-master",
"hashids/hashids": "3.0.0",
"cmb2/cmb2": "v2.6.0",
"origgami/cmb2-grid":"dev-master"
},
"replace": {
},
"extra": {
"installer-paths": {
"src/vendor/{$vendor}/{$name}": [
"type:wordpress-plugin",
"type:wordpress-muplugin"
]
}
},
"autoload": {
"files": ["src/vendor/cmb2/cmb2/init.php"],
"classmap": [
"src/app/"
],
"exclude-from-classmap": [
"/Tests/",
"/test/",
"/tests/"
]
}
}