-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
71 lines (71 loc) · 2.03 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
{
"name": "wpsv/wpsv",
"type": "project",
"license": "MIT",
"description": "WPSV.se",
"homepage": "https://wpsv.se",
"authors": [],
"keywords": [],
"config": {
"preferred-install": "dist"
},
"autoload": {
"psr-0": {"WordPress\\Installer": "scripts"}
},
"scripts": {
"post-install-cmd": [
"WordPress\\Installer::symlinkWPContent"
],
"post-update-cmd": [
"WordPress\\Installer::symlinkWPContent"
]
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "[email protected]:wpsvse/wpsvse-theme.git",
"no-api" : false
}
],
"require": {
"php": ">=5.3.2",
"johnpbloch/wordpress": "*",
"composer/installers": "1.*",
"vlucas/phpdotenv": "v1.0.9",
"seravo/seravo-plugin": "1.8.*",
"wpackagist-plugin/auto-post-thumbnail": "*",
"wpackagist-plugin/wp-piwik": "*",
"wpackagist-plugin/cmb2": "*",
"wpackagist-theme/twentysixteen": "*",
"wpackagist-plugin/wordpress-importer": "*",
"wpackagist-plugin/customizer-export-import": "*",
"wpackagist-plugin/widget-importer-exporter": "*",
"wpackagist-plugin/invitations-for-slack": "*",
"wpackagist-plugin/thumbnail-upscale": "*",
"wpackagist-plugin/force-regenerate-thumbnails": "*",
"wpackagist-plugin/wp-nested-pages": "*",
"wpackagist-plugin/email-obfuscate-shortcode": "*",
"wpsv/wpsvse-theme": "dev-master"
},
"require-dev": {
"wpackagist-plugin/query-monitor": "*",
"wpackagist-plugin/wp-crontrol": "*",
"wpackagist-plugin/rewrite-rules-inspector": "*",
"wpackagist-plugin/fakerpress": "*",
"wpackagist-plugin/custom-post-type-ui": "*"
},
"extra": {
"installer-paths": {
"htdocs/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"htdocs/wp-content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"htdocs/wp-content/themes/{$name}": ["type:wordpress-theme"]
},
"dropin-paths": {
},
"wordpress-install-dir": "htdocs/wordpress"
}
}