forked from stellarwp/kadence-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.55 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
{
"name": "kadencewp/kadence-blocks",
"type": "wordpress-plugin",
"homepage": "https://www.kadencewp.com",
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.2.34"
}
},
"require": {
"psr/container": "^1.0",
"lucatume/di52": "^3.0",
"stellarwp/telemetry": "^2.0",
"stellarwp/container-contract": "^1.0"
},
"autoload": {
"psr-4": {
"KadenceWP\\KadenceBlocks\\": "includes/vendor"
}
},
"scripts": {
"strauss": [
"test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/download/0.13.0/strauss.phar",
"@php bin/strauss.phar"
],
"pup": [
"test -f ./bin/pup.phar || curl -o bin/pup.phar -L -C - https://github.com/stellarwp/pup/releases/download/1.2.1/pup.phar",
"@php bin/pup.phar"
],
"post-install-cmd": [
"@strauss",
"echo \"<?php\" > vendor/lucatume/di52/aliases.php",
"echo \"<?php\" > vendor/vendor-prefixed/lucatume/di52/aliases.php"
],
"post-update-cmd": [
"@strauss",
"echo \"<?php\" > vendor/lucatume/di52/aliases.php",
"echo \"<?php\" > vendor/vendor-prefixed/lucatume/di52/aliases.php"
]
},
"extra": {
"strauss": {
"target_directory": "vendor/vendor-prefixed",
"classmap_prefix": "Kadence_Blocks_",
"constant_prefix": "KADENCE_BLOCKS_",
"namespace_prefix": "KadenceWP\\KadenceBlocks",
"delete_vendor_files": true,
"exclude_from_prefix": {
"file_patterns": []
},
"packages": [
"psr/container",
"stellarwp/container-contract",
"stellarwp/telemetry",
"lucatume/di52"
]
}
}
}