-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 869 Bytes
/
composer.json
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": "prtksxna/a-sticky-note",
"type": "project",
"description": "WordPress plugin to create sticky notes",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Prateek Saxena",
"email": "[email protected]"
}
],
"require": {},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"wp-coding-standards/wpcs": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.2",
"phpcompatibility/php-compatibility": "^9.3"
},
"scripts": {
"test": "composer run-script lint",
"lint": "phpcs *.php --ignore=vendor -s",
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"post-install-cmd": [
"@install-codestandards"
]
}
}