-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
42 lines (42 loc) · 948 Bytes
/
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
{
"name": "10up/block-catalog-plugin",
"description": "Keep track of which Gutenberg Blocks are used across your site.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Darshan Sawardekar",
"email": "[email protected]",
"role": "developer"
},
{
"name": "10up",
"email": "[email protected]",
"role": "developer"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"10up/phpcs-composer": "~3@RC",
"squizlabs/php_codesniffer": "~3.7.1",
"yoast/phpunit-polyfills": "^1.0",
"phpunit/phpunit": "~9.0",
"sirbrillig/phpcs-changed": "^2.11"
},
"autoload": {
"psr-4": {
"BlockCatalog\\": "includes/classes/"
}
},
"scripts": {
"lint": "phpcs includes",
"lint-fix": "phpcbf includes"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}