-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.39 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
{
"name": "cloudcatch/wp-block-template-part",
"description": "Gutenberg block to render a template part inside a query loop",
"type": "wordpress-plugin",
"authors": [
{
"name": "David Jensen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"CloudCatch\\WpBlockTemplatePart\\": "src"
}
},
"config": {
"platform": {
"php": "7.0.0"
}
},
"repositories": [],
"require": {},
"require-dev": {
"phpunit/phpunit": "^6",
"phpunit/php-code-coverage": "^5",
"phpcompatibility/phpcompatibility-wp": "*",
"php-stubs/wordpress-stubs": "@stable",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.2",
"squizlabs/php_codesniffer": "^3.6",
"automattic/vipwpcs": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1"
},
"scripts": {
"test": [
"phpunit"
],
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"phpcbf": [
"phpcbf -p"
],
"post-install-cmd": [
"composer dump-autoload -o"
],
"post-update-cmd": [
"composer dump-autoload -o"
]
},
"extra": {
"scripts-description": {
"test": "Run unit tests",
"phpcs": "Analyze code with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
}
}
}