-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
54 lines (54 loc) · 1.52 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
{
"name": "sformisano/obsidian",
"description": "Obsidian WordPress Starter Kit",
"type": "project",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Salvatore Formisano",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"composer/installers": "^1.4",
"roots/bedrock": "1.8.5",
"roots/soil": "3.7.3",
"slowprog/composer-copy-file": "~0.2",
"wpackagist-plugin/autoptimize": "2.2.2",
"wpackagist-plugin/debug-bar": "0.9",
"wpackagist-plugin/google-analytics-dashboard-for-wp": "5.1.2.4",
"wpackagist-plugin/ninja-forms": "3.2.6",
"wpackagist-plugin/wordpress-seo": "5.9.3",
"wpackagist-plugin/wp-seo-structured-data-schema": "2.3"
},
"scripts": {
"post-install-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
],
"post-update-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
]
},
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"web/app/plugins/{$name}/": ["type:wordpress-plugin"],
"web/app/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "web/wp",
"copy-file": {
"vendor/roots/bedrock/config": "config/",
"vendor/roots/bedrock/web/app": "web/app",
"vendor/roots/bedrock/web/index.php": "web/",
"vendor/roots/bedrock/web/wp-config.php": "web/"
}
}
}