-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·30 lines (30 loc) · 945 Bytes
/
composer.json
File metadata and controls
executable file
·30 lines (30 loc) · 945 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
{
"name": "wordpress-phoenix/abstract-theme-base",
"type": "library",
"description": "PHP class to extend when building a WordPress theme allowing you to follow smart theme setup standards.",
"keywords": [
"wordpress", "theme", "abstract", "standardize", "boilerplate"
],
"homepage": "https://github.com/WordPress-Phoenix/abstract-theme-base",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Seth Carstens",
"email": "seth.carstens@gmail.com",
"homepage": "http://github.com/scarstens",
"role": "Developer"
}
],
"require-dev": {
"automattic/vipwpcs": "^0.4.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"wp-coding-standards/wpcs": "^1.2.0"
},
"scripts": {
"lint:check": "phpcs --standard=./.circleci/phpcs.xml .",
"lint:fix": "phpcbf --standard=./.circleci/phpcs.xml ."
},
"autoload": {
"classmap": ["src/abstract-theme.php"]
}
}