-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
84 lines (84 loc) · 2.13 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "tomodomo/starter-wp",
"description": "A highly opinionated WordPress framework",
"type": "project",
"license": "MIT",
"config": {
"vendor-dir": "vendor/composer",
"sort-packages": true
},
"authors": [
{
"name": "Tomodomo",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url" : "https://packages.vanpattenmedia.com"
},
{
"type": "path",
"url": "./app/plugins/*"
},
{
"type": "path",
"url": "./app/themes/*"
},
{
"type": "vcs",
"url": "https://github.com/tomodomoco/kaiso"
}
],
"autoload": {
"psr-4": {
"Tomodomo\\Controllers\\": [
"app/controllers/"
],
"Tomodomo\\Helpers\\": [
"app/helpers/"
],
"Tomodomo\\Models\\": [
"app/models/"
]
}
},
"require": {
"php": "^7.1",
"johnpbloch/wordpress": "^4.9",
"symfony/yaml": "~2.0",
"timber/timber": "^1.7",
"tomodomo/kaiso": "dev-master",
"tomodomo/theme": "*@dev",
"wpackagist-plugin/co-authors-plus": "^3.3",
"wpackagist-plugin/gutenberg": "^3.1.0",
"wpackagist-plugin/wordpress-seo": "^8.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"sirbrillig/phpcs-variable-analysis": "^2.0",
"squizlabs/php_codesniffer": "^3.2",
"wimg/php-compatibility": "^8.1",
"wp-coding-standards/wpcs": "^0.14.1",
"wpackagist-plugin/better-search-replace": "^1.3",
"wpackagist-plugin/debug-bar": "^0.9.0",
"wpackagist-plugin/debug-bar-timber": "^0.3.0",
"wpackagist-plugin/query-monitor": "^3.0",
"wpackagist-plugin/wp-mail-logging": "^1.8.3",
"vimeo/psalm": "^2.0",
"giacocorsiglia/wordpress-stubs": "^4.9"
},
"extra": {
"wordpress-install-dir": "public/wp",
"installer-paths": {
"public/content/plugins/{$name}": ["type:wordpress-plugin"],
"public/content/mu-plugins/{$name}": ["type:wordpress-muplugin"],
"public/content/themes/{$name}": ["type:wordpress-theme"]
}
}
}