-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.61 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
{
"name": "ymirapp/blog",
"type": "project",
"license": "MIT",
"description": "Ymir WordPress blog",
"homepage": "https://blog.ymirapp.com/",
"authors" : [
{
"name": "Carl Alexander",
"email": "[email protected]",
"homepage": "https://ymirapp.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": ["wpackagist-plugin/*", "wpackagist-theme/*"]
}
],
"require": {
"php": ">=7.1",
"composer/installers": "^1.10",
"oscarotero/env": "^2.1",
"roots/bedrock-autoloader": "^1.0",
"roots/wordpress": "*",
"roots/wp-config": "1.0.0",
"vlucas/phpdotenv": "^5.3",
"wpackagist-plugin/autodescription": "^4.1",
"wpackagist-plugin/google-authenticator": "^0.53.0",
"wpackagist-plugin/passwords-evolved": "^1.2",
"wpackagist-plugin/redirection": "^5.0",
"wpackagist-theme/twentytwentyone": "^1.1",
"ymirapp/wordpress-plugin": "^1.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"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"
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
}
}