-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.67 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
{
"name": "koen12344/affiliate-product-highlights",
"description": "Plugin to display products from various affiliate network product feeds in WordPress",
"type": "project",
"autoload": {
"psr-4": {
"Koen12344\\AffiliateProductHighlights\\": "src/php/"
},
"classmap": ["aph-vendor"]
},
"authors": [
{
"name": "Koen Reus",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"deliciousbrains/wp-background-processing": "^1.1.1",
"ext-simplexml": "*",
"ext-xmlreader": "*",
"ext-mbstring": "*",
"ext-dom": "*",
"ext-intl": "*",
"psr/container": "^2.0"
},
"scripts": {
"strauss": [
"/usr/local/bin/strauss"
],
"post-install-cmd": [
"@strauss"
],
"post-update-cmd": [
"@strauss"
]
},
"extra": {
"strauss": {
"target_directory": "aph-vendor",
"namespace_prefix": "Koen12344\\APH_Vendor\\",
"classmap_prefix": "Koen12344_APH_Vendor_",
"constant_prefix": "APH_Vendor_",
"packages": [
],
"override_autoload": {
},
"exclude_from_copy": {
"packages": [
],
"namespaces": [
],
"file_patterns": [
]
},
"exclude_from_prefix": {
"packages": [
],
"namespaces": [
],
"file_patterns": [
"/^psr.*$/"
]
},
"namespace_replacement_patterns" : {
},
"delete_vendor_packages": true,
"delete_vendor_files": true
}
}
}