-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
31 lines (31 loc) · 965 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
{
"name": "sarahcssiqueira/base-wp-theme",
"description": "Skeleton WordPress theme to use as a base to build WordPress themes from scratch.",
"license": "GPL-2.0+",
"type": "wordpress-theme",
"authors": [
{
"name": "sarahcssiqueira",
"email": "[email protected]",
"homepage": "https://sarahjobs.com"
}
],
"support": {
"src": "https://github.com/sarahcssiqueira/base-wp-theme",
"issues": "https://github.com/sarahcssiqueira/base-wp-theme/issues"
},
"autoload": {
"psr-4": {
"BaseWpTheme\\Inc\\": "inc/"
}
},
"scripts": {
"cstd": "./vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs",
"cs": "./vendor/bin/phpcs --standard=.phpcs.xml --report=summary .",
"cbf": "./vendor/bin/phpcbf --standard=.phpcs.xml ."
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^2.3"
}
}