-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 2.26 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 2.26 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
{
"name": "spindogs/bedrock",
"type": "project",
"description": "WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure",
"config": {
"preferred-install": "dist",
"allow-plugins": {
"pivvenit/acf-pro-installer": true,
"composer/installers": true,
"roots/wordpress-core-installer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://pivvenit.github.io/acf-composer-bridge/composer/v3/wordpress-muplugin/"
}
],
"require": {
"php": ">=7.1",
"composer/installers": "^1.8",
"vlucas/phpdotenv": "^4.0.0",
"oscarotero/env": "^2.1.0",
"roots/wordpress": "^5.5",
"roots/wp-config": "^1.0.0",
"roots/wp-password-bcrypt": "^1.0.0",
"spindogs/wp-platform": "^2.0.0",
"wpackagist-plugin/timber-library": "^1.18",
"wpackagist-plugin/classic-editor": "^1.6",
"advanced-custom-fields/advanced-custom-fields-pro": "^5.9",
"wpackagist-plugin/wordpress-seo": "^17.0",
"wpackagist-plugin/wp-sentry-integration": "^4.10"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0.2",
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^8.0",
"wpackagist-plugin/fakerpress": "^0.5.1"
},
"autoload": {
"psr-4": {
"App\\": "web/app/themes/v1/app/"
}
},
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin",
"wpackagist-plugin/timber-library",
"wpackagist-plugin/classic-editor",
"wpackagist-plugin/wp-sentry-integration"
],
"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": [
"./vendor/bin/phpunit"
]
}
}