This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 219
/
composer.json
72 lines (72 loc) · 1.71 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
{
"name": "woocommerce/woocommerce-blocks",
"description": "WooCommerce blocks for the Gutenberg editor.",
"homepage": "https://woocommerce.com/",
"type": "wordpress-plugin",
"version": "11.8.0-dev",
"keywords": [
"gutenberg",
"woocommerce",
"blocks"
],
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"ext-hash": "*",
"ext-json": "*",
"composer/installers": "^1.7.0",
"automattic/jetpack-autoloader": "^3.0",
"automattic/jetpack-connection": "^2.1",
"automattic/jetpack-config": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "9.6.15",
"phpunit/php-code-coverage": "9.2.29",
"woocommerce/woocommerce-sniffs": "0.1.3",
"phpdocumentor/reflection": "3.0.1",
"yoast/phpunit-polyfills": "2.0.0",
"nikic/php-parser": "4.16.0 as 1.0.0",
"mockery/mockery": "1.6.6",
"wp-hooks/generator": "0.9.0"
},
"autoload": {
"psr-4": {
"Automattic\\WooCommerce\\StoreApi\\": "src/StoreApi/",
"Automattic\\WooCommerce\\Blocks\\": "src/"
},
"files": [
"src/StoreApi/deprecated.php",
"src/StoreApi/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Automattic\\WooCommerce\\Blocks\\Tests\\": "tests/php"
}
},
"scripts": {
"phpcs": [
"phpcs --extensions=php -s -p"
],
"phpcbf": [
"phpcbf -p"
]
},
"config": {
"platform": {
"php": "7.4.33"
},
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"scripts-description": {
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
}
}
}