forked from stellarwp/kadence-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.07 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "kadencewp/kadence-blocks",
"type": "wordpress-plugin",
"homepage": "https://www.kadencewp.com",
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.2.34"
}
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:stellarwp/prophecy-container.git"
},
{
"type": "vcs",
"url": "[email protected]:stellarwp/prophecy-log.git"
},
{
"type": "vcs",
"url": "[email protected]:stellarwp/prophecy-image-downloader.git"
},
{
"type": "vcs",
"url": "[email protected]:stellarwp/prophecy-storage.git"
}
],
"require": {
"psr/container": "^1.0",
"lucatume/di52": "^3.3",
"stellarwp/telemetry": "^2.3",
"stellarwp/uplink": "dev-bugfix/multisite-token-logic",
"stellarwp/container-contract": "^1.0",
"stellarwp/prophecy-image-downloader": "^1.1",
"stellarwp/prophecy-storage": "^1.1",
"symfony/translation-contracts": "^2.5"
},
"autoload": {
"psr-4": {
"KadenceWP\\KadenceBlocks\\": "includes/resources"
}
},
"scripts": {
"stellar-uplink": [
"vendor/bin/stellar-uplink domain=kadence-blocks"
],
"strauss": [
"test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/download/0.14.1/strauss.phar",
"@php bin/strauss.phar",
"@composer dump-autoload"
],
"pup": [
"test -f ./bin/pup.phar || curl -o bin/pup.phar -L -C - https://github.com/stellarwp/pup/releases/download/1.2.2/pup.phar",
"@php bin/pup.phar"
],
"wp-cli": [
"test -f ./bin/wp-cli.phar || curl -o bin/wp-cli.phar -L -C - https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar",
"@php -d memory_limit=4G bin/wp-cli.phar"
],
"post-install-cmd": [
"@strauss"
],
"post-update-cmd": [
"@strauss"
]
},
"extra": {
"strauss": {
"target_directory": "vendor/vendor-prefixed",
"classmap_prefix": "Kadence_Blocks_",
"constant_prefix": "KADENCE_BLOCKS_",
"namespace_prefix": "KadenceWP\\KadenceBlocks\\",
"delete_vendor_packages": true,
"exclude_from_prefix": {
"file_patterns": [
"/symfony\\/polyfill-(.*)/"
]
}
}
}
}