-
-
Notifications
You must be signed in to change notification settings - Fork 278
/
composer.json
70 lines (70 loc) · 1.66 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "timber/starter-theme",
"description": "Starter theme to build a Timber theme",
"type":"wordpress-theme",
"license": "MIT",
"authors": [
{
"name": "Erik van der Bas",
"email": "[email protected]",
"homepage": "https://basedonline.nl"
},
{
"name": "Lukas Gächter",
"email": "[email protected]",
"homepage": "https://www.mind.ch"
},
{
"name": "Nicolas Lemoine",
"email": "[email protected]",
"homepage": "https://n5s.dev"
},
{
"name": "Jared Novack",
"email": "[email protected]",
"homepage": "https://upstatement.com"
},
{
"name": "Timber Community",
"homepage": "https://github.com/timber/timber"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"timber/timber": "^2.1"
},
"require-dev": {
"automattic/wordbless": "^0.4.2",
"yoast/wp-test-utils": "^1.0",
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/php-compatibility": "^9",
"szepeviktor/phpstan-wordpress": "^1.3",
"10up/phpcs-composer": "^3.0"
},
"extra": {
"installer-paths": {
"vendor/automattic/wordbless/": [
"automattic/wordbless"
]
},
"wordpress-install-dir": "wordpress"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": "phpunit",
"cs": "@php ./vendor/bin/phpcs",
"cs:fix": "@php ./vendor/bin/phpcbf",
"phpstan": "@php ./vendor/bin/phpstan analyse"
}
}