forked from owid/owid-grapher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
106 lines (106 loc) · 3.2 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "roots/bedrock",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure",
"homepage": "https://roots.io/bedrock/",
"authors": [
{
"name": "Scott Walkinshaw",
"email": "[email protected]",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "Ben Word",
"email": "[email protected]",
"homepage": "https://github.com/retlehs"
}
],
"keywords": [
"bedrock",
"composer",
"roots",
"wordpress",
"wp",
"wp-config"
],
"support": {
"issues": "https://github.com/roots/bedrock/issues",
"forum": "https://discourse.roots.io/category/bedrock"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "vcs",
"url": "https://github.com/wp-graphql/wp-graphql"
},
{
"type": "vcs",
"url": "https://github.com/WP-API/Basic-Auth"
}
],
"require": {
"php": ">=7.1",
"composer/installers": "1.11.0",
"vlucas/phpdotenv": "5.3.0",
"oscarotero/env": "2.1.0",
"roots/bedrock-autoloader": "1.0.4",
"roots/wordpress": "5.7.2",
"roots/wp-config": "1.0.0",
"roots/wp-password-bcrypt": "1.0.0",
"wp-api/basic-auth": "dev-master",
"wp-graphql/wp-graphql": "1.6.4",
"wpackagist-plugin/add-category-to-pages": "1.2",
"wpackagist-plugin/admin-starred-posts": "2.5",
"wpackagist-plugin/broken-link-checker": "1.11.15",
"wpackagist-plugin/co-authors-plus": "3.4.91",
"wpackagist-plugin/mailgun": "1.7.9",
"wpackagist-plugin/my-default-post-content": "0.7.1",
"wpackagist-plugin/redirection": "5.1.3",
"wpackagist-plugin/safe-svg": "1.9.9",
"wpackagist-plugin/simple-custom-post-order": "2.5.6",
"wpackagist-plugin/simple-history": "2.42.0",
"wpackagist-plugin/tablepress": "1.14",
"wpackagist-plugin/enable-media-replace": "3.5.0",
"lcobucci/jwt": "4.1.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.6.0",
"roave/security-advisories": "dev-master"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"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');\""
],
"test": [
"phpcs"
]
}
}