-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
36 lines (36 loc) · 979 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/beapi-frontend-framework",
"description": "Frontend Framework theme for WordPress",
"type": "metapackage",
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpcompatibility/php-compatibility": "^9.3",
"phpro/grumphp-shim": "^1.5",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.13",
"wp-coding-standards/wpcs": "^2.3"
},
"scripts": {
"cs": [
"./vendor/bin/phpcs ."
],
"cb": [
"./vendor/bin/phpcbf ."
],
"psalm": [
"./vendor/bin/psalm"
]
},
"autoload": {
"psr-4": {
"BEA\\Theme\\Framework\\": "inc/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp-shim": true
}
}
}