-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
49 lines (49 loc) · 1.35 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
{
"name": "woocommerce/grow",
"description": "description",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.4",
"ext-json": "*"
},
"require-dev": {
"ext-zip": "*",
"phpcompatibility/php-compatibility": "^9.0",
"php-parallel-lint/php-parallel-lint": "^1.3.1",
"woocommerce/woorelease": "dev-trunk",
"yoast/phpunit-polyfills": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"wp-coding-standards/wpcs": "^3.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/woocommerce/woorelease"
}
],
"autoload": {
"psr-4": {
"Automattic\\WooCommerce\\Grow\\WR\\": "packages/php/woorelease-extension/src"
}
},
"scripts": {
"assumeReleaseUnchanged": "git update-index --assume-unchanged release.txt",
"noAssumeReleaseUnchanged": "git update-index --no-assume-unchanged release.txt",
"post-install-cmd": [
"@assumeReleaseUnchanged"
],
"post-update-cmd": [
"@assumeReleaseUnchanged"
]
},
"scripts-descriptions": {
"assumeReleaseUnchanged": "Tell Git to assume that the 'release.txt' file is unchanged. This allows changes in this file to be ignored by Git.",
"noAssumeReleaseUnchanged": "Tell Git to stop assuming that the 'release.txt' file is unchanged, and track it normally."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}