-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 773 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 773 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
{
"name": "kasparsd/code-prettify",
"description": "Automatic code syntax highlighter",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Kaspars Dambis",
"homepage": "https://kaspars.net"
}
],
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.3"
},
"config": {
"sort-packages": true,
"platform": {
"php": "5.6.20"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"lint": [
"composer validate --no-check-publish --strict",
"phpcs ."
],
"lint-fix": [
"phpcbf ."
]
}
}