-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 847 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 847 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
{
"name": "wptsp/wordpress-theme",
"description": "WordPress Theme Starter Pack",
"type": "wordpress-theme",
"require": {
"php": ">=7.4",
"wp-cli/wp-cli-bundle": "*",
"composer/installers": "^2.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "*"
},
"scripts": {
"phpcs": "phpcs --standard=WordPress",
"phpcbf": "phpcbf --standard=WordPress",
"check-php-compat": "phpcs --standard=PHPCompatibilityWP --runtime-set testVersion 7.4- --ignore=*/vendor/*,*/node_modules/* ."
},
"autoload": {
"psr-4": {
"WPTSP\\": "inc/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}