-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.81 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
{
"name": "rickgregory/baseproject",
"keywords": [
"WordPress",
"Composer",
"SpinupWP"
],
"license": "GPL-2.0+",
"authors": [
{
"name": "Sitetherapy",
"homepage": "https://sitetherapy.net/"
}
],
"type": "project",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"},
{"type": "composer",
"url": "https://composer.deliciousbrains.com"}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": ">=7.1",
"composer/installers": "^1.4",
"deliciousbrains/spinupwp-mu-plugin": "^1.0",
"johnpbloch/wordpress": "5.*",
"oscarotero/env": "^1.1.0",
"vlucas/phpdotenv": "^2.0.1",
"wpackagist-plugin/limit-login-attempts": "*",
"wpackagist-plugin/redis-cache": "*",
"wpackagist-plugin/wordpress-seo":">=7.0.2",
"wpackagist-plugin/google-analyticator":"dev-trunk",
"wpackagist-plugin/ewww-image-optimizer":"dev-trunk",
"wpackagist-plugin/megamenu":"dev-trunk",
"wpackagist-plugin/really-simple-ssl":"dev-trunk",
"wpackagist-plugin/redirection":"dev-trunk",
"wpackagist-plugin/wp-sitemap-page":"dev-trunk",
"deliciousbrains-plugin/wp-migrate-db-pro": "*",
"deliciousbrains-plugin/wp-migrate-db-pro-media-files": "*",
"wpackagist-theme/twentynineteen": "*"
},
"extra": {
"wordpress-install-dir": "public/wp",
"installer-paths": {
"public/content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"public/content/plugins/{$name}/": ["type:wordpress-plugin"],
"public/content/themes/{$name}/": ["type:wordpress-theme"]
}
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"autoload": {
"psr-4": {"Sitetherapy\\SpinupWPComposerSite\\": "app/"}
}
}