-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
42 lines (42 loc) · 1.11 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
{
"name": "beapi/bea-plugin-boilerplate",
"description": "Plugin boilerplate from BeAPI.",
"license": "GPL-2.0+",
"type": "project",
"keywords": ["WordPress", "boilerplate", "CMS"],
"authors": [
{
"name": "BeAPI",
"email": "[email protected]",
"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",
"vimeo/psalm": "^4.6",
"wp-coding-standards/wpcs": "2.3.0"
},
"scripts": {
"cs": "./vendor/bin/phpcs",
"cb": "./vendor/bin/phpcbf",
"psalm": "./vendor/bin/psalm"
},
"suggest": {
"wp-cli/wp-cli": "*@stable"
}
}