forked from RobStino/progress-indicator-block
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 724 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 724 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
{
"name": "kienstra/progress-indicator",
"type": "wordpress-plugin",
"description": "A block for adding a progress indicator",
"homepage": "https://github.com/kienstra/wp-block-tutorial",
"license": "GPL-2.0",
"require": {
"php": "^5.6 || ^7"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "0.7.1",
"phpcompatibility/phpcompatibility-wp": "2.1.1",
"squizlabs/php_codesniffer": "3.5.3",
"wp-coding-standards/wpcs": "2.3.0"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"lint": "phpcs",
"lint-fix": "phpcbf"
}
}