-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.42 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.42 KB
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
{
"name": "code-atlantic/ntegration-features-block",
"description": "Integration Features Block",
"type": "wordpress-plugin",
"author": "Code Atlantic LLC",
"license": "GPL-2.0-or-later",
"homepage": "https://wppopupmaker.com/",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=7.4"
},
"autoload": {
"psr-4": {
"IntegrationFeatures\\": "classes/"
},
"classmap": [
"vendor-prefixed"
]
},
"scripts": {
"install-strauss": [
"test -f strauss.phar || curl -o strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/download/0.22.4/strauss.phar"
],
"clean-vendor-prefix-folder": [
"rm -rf vendor-prefixed/**/*"
],
"post-install-cmd": [
"@clean-vendor-prefix-folder",
"@strauss",
"composer dump-autoload"
],
"post-update-cmd": [
"@clean-vendor-prefix-folder",
"@strauss",
"composer dump-autoload"
],
"strauss": [
"@install-strauss",
"@php strauss.phar"
]
},
"extra": {
"strauss": {
"target_directory": "/vendor-prefixed/",
"namespace_prefix": "IntegrationFeatures\\Vendor\\",
"classmap_prefix": "IntegrationFeatures_",
"constant_prefix": "INTEGRATION_FEATURES_",
"packages": [],
"exclude_from_copy": {
"packages": []
}
}
},
"config": {
"platform-check": false,
"optimize-autoloader": true
}
}