-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 971 Bytes
/
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
{
"name": "i30/wp-scratch",
"description": "A scalable WordPress project from scratch. Easy to deploy!",
"authors": [{
"name": "sarahcoding",
"email": "[email protected]"
}],
"license": "GPL-3.0",
"require": {
"php": ">=7.2",
"composer/installers": "^1.0",
"johnpbloch/wordpress": "^5.6"
},
"repositories": [{
"type": "composer",
"url": "https://wpackagist.org"
}],
"extra": {
"wordpress-install-dir": "app/cms",
"installer-paths": {
"app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"app/plugins/{$name}/": ["type:wordpress-plugin"],
"app/themes/{$name}/": ["type:wordpress-theme"]
}
},
"autoload": {
"psr-4": {
"Console\\": "console/",
"Theme\\": "app/themes",
"Plugin\\": "app/plugins",
"MUPlugin\\": "app/mu-plugins"
}
}
}