-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.38 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
{
"name": "tomodomo/starter-theme",
"description": "WordPress starter theme",
"type": "wordpress-theme",
"license": "MIT",
"authors": [
{
"name": "Tomodomo",
"email": "hello@tomodomo.co"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/tomodomoco/kaiso"
},
{
"type": "vcs",
"url": "https://github.com/tomodomoco/wp-asset-registrar"
}
],
"config": {
"vendor-dir": "build/composer",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-name": "tf"
},
"autoload": {
"psr-4": {
"Tomodomo\\Theme\\Controllers\\": [
"src/controllers/"
],
"Tomodomo\\Theme\\Helpers\\": [
"src/helpers/"
],
"Tomodomo\\Theme\\Models\\": [
"src/models/"
],
"Tomodomo\\Theme\\Widgets\\": [
"src/widgets/"
]
}
},
"require": {
"php": "^7.1",
"nesbot/carbon": "^2.7",
"timber/timber": "^1.7",
"tomodomo/kaiso": "dev-master",
"tomodomo/twig-pluralize-extension": "^2.0",
"tomodomo/wp-asset-registrar": "dev-master"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"giacocorsiglia/wordpress-stubs": "^4.9",
"sirbrillig/phpcs-variable-analysis": "^2.1",
"vimeo/psalm": "^2.0",
"wimg/php-compatibility": "^9.0"
}
}