-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 907 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
38
39
40
41
42
43
44
45
46
47
{
"name": "upstatement/timber-starter-theme",
"description": "Starter theme to build a Timber theme",
"type": "wordpress-theme",
"license": "MIT",
"authors": [
{
"email": "[email protected]",
"name": "jarednova"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"timber/timber": "2.x-dev"
},
"require-dev": {
"automattic/wordbless": "^0.4.2",
"yoast/wp-test-utils": "^1.0"
},
"extra": {
"installer-paths": {
"vendor/automattic/wordbless/": [
"automattic/wordbless"
]
},
"wordpress-install-dir": "wordpress"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"composer/installers": true
}
},
"scripts": {
"test": "phpunit"
},
"autoload": {
"files": [
"app/helpers.php"
]
}
}