-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 816 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 816 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
{
"name": "nexiby/blogkit",
"license": "GPL-2.0-or-later",
"version": "1.3.1",
"autoload": {
"psr-4": {
"BlogKit\\": "Inc/",
"BlogKit\\Frontend\\": "Frontend/",
"BlogKit\\Admin\\": "Admin/",
"BlogKit\\Elementor\\": "Frontend/Elementor/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0",
"wp-cli/i18n-command": "^2.6",
"phpcompatibility/phpcompatibility-wp": "*"
},
"scripts": {
"lint:wpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"lint:php": "@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor .",
"make-pot": "wp i18n make-pot . languages/blogkit.pot",
"lint:autofix": "vendor/bin/phpcbf"
}
}