-
Notifications
You must be signed in to change notification settings - Fork 82
/
composer.json
137 lines (137 loc) · 4.59 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "kadencewp/kadence-blocks",
"description": "Kadence Blocks - Gutenberg Blocks for Page Building",
"type": "wordpress-plugin",
"homepage": "https://www.kadencewp.com",
"license": "GPL-2.0-or-later",
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"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": {
"composer/installers": "^2.0",
"lucatume/di52": "^3.3",
"psr/container": "^1.0",
"stellarwp/container-contract": "^1.0",
"stellarwp/prophecy-image-downloader": "^1.5",
"stellarwp/prophecy-storage": "^1.1",
"stellarwp/telemetry": "^2.3",
"stellarwp/uplink": "dev-bugfix/multisite-token-logic",
"symfony/translation-contracts": "^2.5"
},
"require-dev": {
"automattic/vipwpcs": "^3.0",
"codeception/module-asserts": "^1.3.1",
"codeception/module-cli": "^1.1.1",
"codeception/module-db": "^1.2",
"codeception/module-filesystem": "^1.0.3",
"codeception/module-phpbrowser": "^1.0.3",
"codeception/module-webdriver": "^1.4.1",
"codeception/util-universalframework": "^1.0",
"lucatume/wp-browser": "<3.5",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"stellarwp/coding-standards": "^2.0",
"sabberworm/php-css-parser": "^8.4"
},
"autoload": {
"psr-4": {
"KadenceWP\\KadenceBlocks\\": "includes/resources"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Tests\\Support\\Classes\\": "tests/_support/Classes"
}
},
"scripts": {
"stellar-uplink": [
"vendor/bin/stellar-uplink domain=kadence-blocks"
],
"strauss-install": [
"test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/download/0.19.1/strauss.phar"
],
"strauss": [
"@strauss-install",
"@php bin/strauss.phar",
"@composer dump-autoload"
],
"strauss-release": [
"@strauss-install",
"@php bin/strauss.phar --deleteVendorPackages=true",
"@composer dump-autoload"
],
"strauss-clean": [
"rm -f ./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.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"
],
"compatibility:php-7.4": "phpcs -d memory_limit=2048M -p -s --standard=PHPCompatibilityWP --runtime-set testVersion 7.4 --ignore=./vendor,./node_modules,./dist,./src/packages/icons/,./includes/assets/ --extensions=php ./",
"compatibility:php-8.0": "phpcs -d memory_limit=2048M -p -s --standard=PHPCompatibilityWP --runtime-set testVersion 8.0 --ignore=./vendor,./node_modules,./dist,./src/packages/icons/,./includes/assets/ --extensions=php ./",
"compatibility:php-8.1": "phpcs -d memory_limit=2048M -p -s --standard=PHPCompatibilityWP --runtime-set testVersion 8.1 --ignore=./vendor,./node_modules,./dist,./src/packages/icons/,./includes/assets/ --extensions=php ./",
"compatibility:php-8.2": "phpcs -d memory_limit=2048M -p -s --standard=PHPCompatibilityWP --runtime-set testVersion 8.2 --ignore=./vendor,./node_modules,./dist,./src/packages/icons/,./includes/assets/ --extensions=php ./",
"compatibility:php-8.3": "phpcs -d memory_limit=2048M -p -s --standard=PHPCompatibilityWP --runtime-set testVersion 8.3 --ignore=./vendor,./node_modules,./dist,./src/packages/icons/,./includes/assets/ --extensions=php ./",
"compatibility": [
"@compatibility:php-7.4",
"@compatibility:php-8.0",
"@compatibility:php-8.1",
"@compatibility:php-8.2",
"@compatibility:php-8.3"
],
"phpcs": "phpcs --standard=phpcs.xml"
},
"extra": {
"strauss": {
"target_directory": "vendor/vendor-prefixed",
"classmap_prefix": "Kadence_Blocks_",
"constant_prefix": "KADENCE_BLOCKS_",
"namespace_prefix": "KadenceWP\\KadenceBlocks\\",
"delete_vendor_packages": false,
"exclude_from_prefix": {
"file_patterns": [
"/symfony\\/polyfill-(.*)/"
]
},
"include_modified_date": false,
"include_author": false
}
}
}