-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
110 lines (110 loc) · 2.8 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "tomodomo/tomodomoco-site",
"description": "Our website",
"type": "project",
"license": "MIT",
"config": {
"vendor-dir": "vendor/composer"
},
"authors": [
{
"name": "Chris Van Patten",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://packages.vanpattenmedia.com"
},
{
"type": "path",
"url": "./app/libraries/*"
},
{
"type": "path",
"url": "./app/plugins/*"
},
{
"type": "path",
"url": "./app/themes/*"
},
{
"type": "vcs",
"url": "https://github.com/ibericode/html-forms"
},
{
"type": "vcs",
"url": "https://github.com/tomodomoco/kaiso"
},
{
"type": "vcs",
"url": "https://github.com/tomodomoco/gutenberg-block-columns"
},
{
"type": "vcs",
"url": "https://github.com/tomodomoco/wp-asset-registrar"
}
],
"autoload": {
"psr-4": {
"Tomodomo\\Controllers\\": [
"app/controllers/"
],
"Tomodomo\\Helpers\\": [
"app/helpers/"
],
"Tomodomo\\Middlewares\\": [
"app/middlewares/"
],
"Tomodomo\\Models\\": [
"app/models/"
]
}
},
"require": {
"php": "^7.1",
"symfony/yaml": "^4.0",
"johnpbloch/wordpress": "^5.0",
"wpackagist-plugin/gutenberg": "^4.0",
"timber/timber": "^1.7",
"wpackagist-plugin/wordpress-seo": "^9.0",
"wpackagist-plugin/co-authors-plus": "^3.3",
"tomodomo/kaiso": "dev-master",
"tomodomo/block-columns": "dev-master",
"tomodomo/theme": "*@dev",
"tomodomo/wp-asset-registrar": "dev-master",
"tomodomo/block-logo-grid": "*@dev",
"danielstjules/stringy": "^3.1",
"rocketgenius/gravityforms": "2.3.4.1",
"slim/slim": "^3.11",
"slim/twig-view": "^2.4",
"ibericode/html-forms": "^1.3"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"sirbrillig/phpcs-variable-analysis": "^2.0",
"squizlabs/php_codesniffer": "^3.2",
"wimg/php-compatibility": "^9.1",
"wp-coding-standards/wpcs": "^0.14.1",
"wpackagist-plugin/better-search-replace": "^1.3",
"wpackagist-plugin/debug-bar": "^1.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"]
}
}
}