-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 2.43 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
{
"name": "digitoimistodude/dudestack",
"type": "project",
"license": "MIT",
"description": "A modern WordPress stack",
"homepage": "https://github.com/digitoimistodude/dudestack",
"authors": [{
"name": "Roni Laukkarinen",
"email": "roni@dude.fi",
"homepage": "https://github.com/ronilaukkarinen"
},
{
"name": "Timi Wahalahti",
"email": "timi@dude.fi",
"homepage": "https://github.com/timiwahalahti"
}
],
"keywords": [
"bedrock", "roots", "wordpress", "stack", "composer", "vagrant", "wp"
],
"support": {
"issues": "https://github.com/digitoimistodude/dudestack/issues"
},
"config": {
"preferred-install": "dist",
"generate-salts": true,
"secure-http": true
},
"autoload": {
"psr-4": {
"Roots\\Bedrock\\": "scripts/Roots/Bedrock"
}
},
"scripts": {
"post-root-package-install": ["Roots\\Bedrock\\Installer::addSalts"]
},
"repositories": [{
"type": "composer",
"url": "https://wpackagist.org",
"minimum-stability": "dev"
},
{
"type": "composer",
"url": "https://wp-languages.github.io"
},
{
"type": "composer",
"url": "https://pivvenit.github.io/acf-composer-bridge/composer/v3/wordpress-plugin/"
}
],
"require": {
"koodimonni/composer-dropin-installer": "dev-master",
"php": ">=7.2",
"koodimonni-language/fi": "*",
"koodimonni-language/en_gb": "*",
"composer/installers": "^1.10.0",
"wp-cli/wp-cli-bundle": "*",
"vlucas/phpdotenv": "^5.3",
"oscarotero/env": "^2.1",
"roots/wp-config": "^1.0",
"johnpbloch/wordpress": "5.7",
"digitoimistodude/air-helper": "*",
"wpackagist-plugin/simple-history": "*",
"wpackagist-plugin/worker": "*",
"wpackagist-plugin/wordpress-seo": "*",
"wpackagist-plugin/so-clean-up-wp-seo": "*",
"advanced-custom-fields/advanced-custom-fields-pro": "5.9.5"
},
"require-dev": {
"rarst/wps": "*"
},
"extra": {
"dropin-paths": {
"content/languages/": ["vendor:koodimonni-language"],
"content/languages/plugins/": ["vendor:koodimonni-plugin-language"],
"content/languages/themes/": ["vendor:koodimonni-theme-language"]
},
"installer-paths": {
"content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"content/plugins/{$name}/": ["type:wordpress-plugin"],
"content/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "wp"
}
}