This repository was archived by the owner on Jul 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.54 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.54 KB
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
{
"name": "trendwerk/starter-wordpress",
"type": "project",
"license": "MIT",
"description": "Opinionated starter project to use WordPress as a headless CMS",
"homepage": "https://www.trendwerk.nl",
"authors": [
{
"name": "Trendwerk",
"email": "hallo@trendwerk.nl",
"homepage": "https://www.trendwerk.nl"
}
],
"support": {
"issues": "https://github.com/trendwerk/starter-wordpress/issues"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": ["wpackagist-plugin/*", "wpackagist-theme/*"]
},
{
"type": "composer",
"url": "https://wp-languages.github.io"
},
{
"type": "package",
"package": {
"name": "acf/advanced-custom-fields-pro",
"version": "6.0.6",
"type": "wordpress-plugin",
"dist": {
"type": "zip",
"url": "https://connect.advancedcustomfields.com/index.php?a=download&p=pro&t={%VERSION}&k={%ACF_PRO_KEY}"
},
"require": {
"ffraenz/private-composer-installer": "*"
}
}
},
{
"type": "vcs",
"url": "https://github.com/wp-graphql/wp-graphql-tax-query"
}
],
"require": {
"acf/advanced-custom-fields-pro": "*",
"composer/installers": "*",
"koodimonni-language/core-nl_nl": "*",
"league/glide": "*",
"oscarotero/env": "^2.1",
"php": ">=7.2",
"roots/bedrock-autoloader": "*",
"roots/wordpress": "*",
"roots/wp-config": "*",
"roots/wp-password-bcrypt": "*",
"vlucas/phpdotenv": "^5.2",
"wp-graphql/wp-graphql-acf": "0.4.1",
"wp-graphql/wp-graphql-tax-query": "*",
"wp-graphql/wp-graphql": "v1.0.5",
"wpackagist-plugin/limit-login-attempts": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"dropin-paths": {
"web/app/languages/": ["vendor:koodimonni-language"],
"web/app/languages/plugins/": ["vendor:koodimonni-plugin-language"],
"web/app/languages/themes/": ["vendor:koodimonni-theme-language"]
},
"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');\""
]
}
}