-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.26 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.26 KB
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
38
39
40
41
42
{
"name": "moxie/Lean",
"description": "Bare bones WordPress starter theme focused on modularity, scalability and performance.",
"keywords": ["wordpress", "themes", "starter theme"],
"homepage": "https://github.com/moxie-lean/Lean",
"licence": "MIT",
"type": "project",
"authors": [
{
"name": "Moxie Developer",
"email": "developer@getmoxied.net"
},
{
"name": "Crisoforo Gaspar Hernandez",
"email": "github@crisoforo.com"
}
],
"autoload": {
"files": [
"inc/helpers/loader.php"
]
},
"require": {
"php": ">=5.4.0",
"moxie-lean/assets": "1.0.1",
"moxie-lean/loader": "1.0.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*",
"wp-coding-standards/wpcs": "dev-master"
},
"scripts": {
"setup-code-sniffer": [
"./vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs/",
"./vendor/bin/phpcs --config-set default_standard ./codesniffer.ruleset.xml",
"./vendor/bin/phpcs --config-set show_progress 0",
"./vendor/bin/phpcs --config-set colors 1"
],
"post-install-cmd": [ "@setup-code-sniffer" ],
"post-update-cmd": [ "@setup-code-sniffer" ]
}
}