-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.11 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.11 KB
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
{
"name": "associationforsoftwaretesting/ast-template-view",
"type": "wordpress-plugin",
"homepage": "https://github.com/associationforsoftwaretesting/ast-template-view/",
"minimum-stability": "dev",
"authors": [
{
"name": "Mirek Długosz",
"homepage": "https://mirekdlugosz.com"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/WordPress/WordPress-Coding-Standards"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"archive-format": "zip"
},
"require-dev": {
"wp-coding-standards/wpcs": "dev-develop",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"scripts": {
"lint": "phpcs --report-full --report-checkstyle=./phpcs-report.xml",
"format": "phpcbf --report=summary,source"
},
"archive": {
"name": "ast-template-view",
"exclude": ["node_modules", "vendor/", ".*", "*.zip"]
}
}