-
Notifications
You must be signed in to change notification settings - Fork 470
/
composer.json
77 lines (77 loc) · 1.98 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
{
"name": "woocommerce/storefront",
"description": "Storefront is a robust and flexible WordPress theme, designed and built by the team at WooCommerce to help you make the most out of using the WooCommerce plugin to power your online store. It's available to download for free from the WordPress theme repository.",
"homepage": "https://woocommerce.com/",
"type": "wordpress-theme",
"license": "GPL-3.0+",
"require": {
"composer/installers": "2.2.0"
},
"archive": {
"exclude": [
"!/assets",
"!/languages",
"!/style.css",
"!/style-rtl.css",
"/assets/css/sass",
"/assets/css/**/*.scss",
"/e2e",
"/vendor",
"composer.json",
"composer.lock",
"package.json",
"package-lock.json",
"phpcs.xml",
"phpunit.xml",
"README.md",
"CONTRIBUTING.md",
"STOREFRONT_STATUS.md",
"renovate.json",
"node_modules",
"storefront.zip",
"validate-build.sh",
".*"
]
},
"require-dev": {
"squizlabs/php_codesniffer": "3.7.1",
"wp-coding-standards/wpcs": "2.3.0",
"woocommerce/woocommerce-sniffs": "0.1.3",
"phpcompatibility/php-compatibility": "9.3.5",
"woocommerce/woocommerce-git-hooks": "1.0.5",
"dealerdirect/phpcodesniffer-composer-installer": "0.7.2"
},
"scripts": {
"pre-update-cmd": [
"WooCommerce\\GitHooks\\Hooks::preHooks"
],
"pre-install-cmd": [
"WooCommerce\\GitHooks\\Hooks::preHooks"
],
"post-install-cmd": [
"WooCommerce\\GitHooks\\Hooks::postHooks"
],
"post-update-cmd": [
"WooCommerce\\GitHooks\\Hooks::postHooks"
],
"phpcs": [
"phpcs --extensions=php -s -p"
],
"phpcbf": [
"phpcbf --extensions=php -p"
]
},
"extra": {
"scripts-description": {
"test": "Run unit tests",
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}