-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 926 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 926 Bytes
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
{
"name": "beapi/beapi-frontend-framework",
"description": "Frontend Framework theme for WordPress",
"type": "metapackage",
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"overtrue/phplint": "^9.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpro/grumphp-shim": "^2.6",
"roave/security-advisories": "dev-latest",
"wp-coding-standards/wpcs": "^3.1"
},
"scripts": {
"cs": [
"./vendor/bin/phpcs ."
],
"cb": [
"./vendor/bin/phpcbf ."
]
},
"autoload": {
"psr-4": {
"BEA\\Theme\\Framework\\": "inc/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp-shim": true
}
}
}