-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.38 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
{
"name": "vendor-name/package-name",
"description": "",
"authors": [
{
"name": "",
"email": "[email protected]"
}
],
"license": "proprietary",
"require": {
"wpackagist-plugin/limit-login-attempts": "1.*",
"wpackagist-plugin/akismet": "5.*",
"wpackagist-theme/twentytwentyfive": "1.*",
"wordpress/wordpress": "6.*"
},
"require-dev": {
"wpackagist-plugin/developer": "*",
"wpackagist-plugin/debug-bar": "*",
"wpackagist-plugin/debug-bar-console": "*",
"wpackagist-plugin/debug-bar-cron": "*",
"wpackagist-plugin/debug-bar-extender": "*",
"wpackagist-plugin/log-deprecated-notices": "*",
"wpackagist-plugin/regenerate-thumbnails": "*",
"wpackagist-plugin/rewrite-rules-inspector": "*",
"wpackagist-plugin/theme-check": "*"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://dboulet.github.io/wp-composer-repository/"
}
],
"extra": {
"installer-paths": {
"public/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"public/wp-content/themes/{$name}/": ["type:wordpress-theme"]
},
"webroot-dir": "public/wp",
"webroot-package": "wordpress/wordpress"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"fancyguy/webroot-installer": true
}
}
}