-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
49 lines (49 loc) · 1.15 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "brettsmason/luxe",
"type": "wordpress-theme",
"description": "Luxe is a WordPress starter theme using a modern workflow and best practices.",
"keywords": [
"wordpress"
],
"homepage": "https://github.com/brettsmason/luxe",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Brett Mason",
"email": "brettsmason@gmail.com",
"homepage": "https://brettmason.co.uk"
}
],
"autoload": {
"psr-4": {
"Luxe\\": "app/"
}
},
"require": {
"php": ">=5.6",
"composer/installers": "~1.0",
"justintadlock/hybrid-core": "^5.0.0"
},
"require-dev": {
"php": ">=7.0",
"wp-coding-standards/wpcs": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/php-compatibility": "*"
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"post-install-cmd": [
"@install-codestandards"
],
"phpcbf-dev": "\"vendor/bin/phpcbf\"",
"run-phpcbf": [
"@phpcbf-dev"
],
"phpcs-dev": "\"vendor/bin/phpcs\"",
"run-phpcs": [
"@phpcs-dev"
]
}
}