-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.31 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
{
"name": "linchpin/box-of-scraps",
"version": "0.1.0",
"authors": [
{
"name": "Linchpin",
"email": "[email protected]",
"homepage": "https://linchpin.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"wp-coding-standards/wpcs": "^2.3",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3",
"php-parallel-lint/php-parallel-lint": "^1.3",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"friendsofphp/php-cs-fixer": "^3.10",
"phpcompatibility/phpcompatibility-wp": "*",
"automattic/phpcs-neutron-ruleset": "^3.4",
"saggre/phpdocumentor-markdown": "^0.1.3"
},
"scripts": {
"lint": "phpcs .",
"lint-fix": "phpcbf .",
"php-cs-fixer": "./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix ./ --config=./.php-cs-fixer.dist.php",
"create-wiki": "phpDocumentor --directory=application --target=wiki --template='vendor/saggre/phpdocumentor-markdown/themes/markdown'"
},
"autoload": {
"psr-4": {
"BoxOfScraps\\": "includes/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}