-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
37 lines (37 loc) · 997 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
37
{
"name": "wordpress-phoenix/wordpress-options-builder-class",
"description": "Library that helps you setup theme or plugin options that store data in the database with just a line or two of code",
"keywords": [
"wordpress",
"site-options",
"utility",
"helper"
],
"homepage": "https://github.com/WordPress-Phoenix/wordpress-options-builder-class",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Seth Carstens",
"email": "[email protected]",
"homepage": "http://github.com/scarstens",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"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"
]
}
}