-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1004 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 1004 Bytes
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
{
"name": "blockmanager/core",
"description": "Block Manager plugin config.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "ConnektHQ",
"email": "support@connekthq.com"
}
],
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"composer/installers": "^1.10"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.1",
"wp-cli/wp-cli-bundle": "*",
"wp-coding-standards/wpcs": "~2.3.0",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"format": "./vendor/bin/phpcbf --standard=.phpcs.xml --report=summary,source",
"lint": "./vendor/bin/phpcs --standard=.phpcs.xml --report=summary,source",
"pot": "./vendor/wp-cli/wp-cli/bin/wp i18n make-pot . lang/block-manager.pot --exclude=node_modules,vendor,build,dist --allow-root"
}
}