-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 942 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
{
"name": "mei/nh3-mag-blocks",
"description": "Add a new set of NH3 related Gutenberg blocks",
"keywords": ["mei", "embed", "archive", "image", "gutenberg", "block"],
"license": "MIT",
"type": "wordpress-plugin",
"require": {
"php": ">=5.2.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "0.14.*",
"localheinz/json-printer": "^2.0"
},
"scripts": {
"post-update-cmd": [
"phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs"
],
"lint": [
"phpcs --standard=.phpcs.xml ./"
],
"lint:fix": [
"phpcbf --standard=.phpcs.xml ./"
],
"release": [
"CliScripts\\Releases::route"
],
"release help": [
"CliScripts\\Releases::writeHelp"
],
"plugin-header": [
"CliScripts\\PluginHeader::generate"
]
},
"autoload": {
"psr-4": {
"CliScripts\\": "cli-scripts/"
}
}
}