-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 2.11 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
{
"name": "phpmx/wordpress-site",
"type": "project",
"license": "MIT",
"description": "Headless WordPress site for PHP Mexico",
"homepage": "https://phpmexico.mx/",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "composer",
"url": "https://pivvenit.github.io/acf-composer-bridge/composer/v3/wordpress-muplugin/"
},
{
"type": "vcs",
"url": "https://github.com/phpmx/wordpress-plugin.git"
}
],
"require": {
"advanced-custom-fields/advanced-custom-fields-pro": "^5.10",
"composer/installers": "^1.11",
"oscarotero/env": "^2.1",
"php": ">=7.1",
"phpmx/wordpress-plugin": "dev-main",
"roots/bedrock-autoloader": "^1.0",
"roots/bedrock-disallow-indexing": "^2.0",
"roots/wordpress": "^5.8",
"roots/wp-config": "1.0.0",
"roots/wp-password-bcrypt": "1.0.0",
"vlucas/phpdotenv": "^5.3",
"wp-graphql/wp-graphql-acf": "^0.5.3",
"wp-graphql/wp-graphql": "^1.6",
"wpackagist-plugin/classic-editor": "^1.6",
"wpackagist-plugin/formidable": "^5.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6.0",
"roave/security-advisories": "dev-master"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin",
"advanced-custom-fields/advanced-custom-fields-pro",
"wp-graphql/wp-graphql-acf",
"wp-graphql/wp-graphql",
"wpackagist-plugin/classic-editor",
"wpackagist-plugin/formidable"
],
"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"
]
}
}