-
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) · 785 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 785 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": "josephfusco/template-usage",
"description": "Display info on what page templates are currently being used within a WordPress multisite.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Joseph Fusco",
"homepage": "https://github.com/josephfusco/"
}
],
"require": {
"php": ">=7",
"composer/installers": "^1.0"
},
"require-dev": {
"automattic/phpcs-neutron-standard": "dev-master",
"squizlabs/php_codesniffer": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "dev-master",
"phpcompatibility/php-compatibility": "dev-master",
"wp-coding-standards/wpcs": "dev-master"
},
"scripts": {
"test": "./vendor/bin/phpcs",
"fix": "./vendor/bin/phpcbf"
}
}