-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.47 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "ernilambar/ns-customizer-utilities",
"description": "Custom WordPress Customizer Controls",
"license": "MIT",
"keywords": [
"customizer",
"wordpress"
],
"authors": [
{
"name": "Nilambar Sharma",
"email": "[email protected]",
"homepage": "https://www.nilambar.net/",
"role": "Developer"
}
],
"homepage": "https://github.com/ernilambar/ns-customizer-utilities",
"support": {
"issues": "https://github.com/ernilambar/ns-customizer-utilities/issues"
},
"require": {
"php": ">=7.2.24"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^8.15",
"wp-coding-standards/wpcs": "^3.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Nilambar\\CustomizerUtils\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"process-timeout": 7200,
"sort-packages": true
},
"scripts": {
"lint": [
"@lint-php",
"@phpcs"
],
"lint-php": "@php ./vendor/bin/parallel-lint --colors --exclude .git --exclude vendor --exclude node_modules .",
"phpcbf": "@php ./vendor/bin/phpcbf --report-full --report-summary",
"phpcs": "@php ./vendor/bin/phpcs --report-full --report-summary"
}
}