-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
36 lines (36 loc) · 982 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
30
31
32
33
34
35
36
{
"name": "beapi/plugin-defaults",
"description": "File defaults for most common plugins.",
"license": "GPL-2.0-or-later",
"type": "project",
"authors": [
{
"name": "BeAPI",
"email": "technique@beapi.fr",
"homepage": "https://beapi.fr",
"role": "Company"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": { "*": "dist" },
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp-shim": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "v0.7.1",
"overtrue/phplint": "^2.3",
"php-parallel-lint/php-parallel-lint": "v1.2.0",
"phpcompatibility/php-compatibility": "9.3.5",
"phpro/grumphp-shim": "v1.3.1",
"squizlabs/php_codesniffer": "3.5.8",
"wp-coding-standards/wpcs": "2.3.0"
},
"scripts": {
"cs": "./vendor/bin/phpcs ./",
"cb": "./vendor/bin/phpcbf ./"
}
}