-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
81 lines (81 loc) · 2.51 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
{
"name": "salvatori/svcms",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with Composer, easier configuration, and an improved folder structure",
"homepage": "https://movidagrafica.co",
"authors": [
{
"name": "Adrián Salvatori",
"email": "[email protected]",
"homepage": "https://github.com/adriansalvatori"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": ["wpackagist-plugin/*", "wpackagist-theme/*"]
}
],
"require": {
"php": ">=7.4",
"composer/installers": "^2.1",
"vlucas/phpdotenv": "^5.4",
"oscarotero/env": "^2.1",
"roots/bedrock-autoloader": "^1.0",
"roots/bedrock-disallow-indexing": "^2.0",
"roots/wordpress": "6.0",
"roots/wp-config": "1.0.0",
"roots/wp-password-bcrypt": "^1.1",
"wpackagist-theme/twentytwentytwo": "^1.2",
"roots/wp-stage-switcher": "^2.2",
"wpackagist-plugin/better-search-replace": "^1.4",
"wpackagist-plugin/disable-comments": "^2.3",
"wpackagist-plugin/duplicate-post": "^4.5",
"wpackagist-plugin/easy-wp-smtp": "^1.4",
"wpackagist-plugin/imsanity": "^2.8",
"wpackagist-plugin/post-type-switcher": "^3.2",
"wpackagist-plugin/query-monitor": "^3.9",
"wpackagist-plugin/safe-redirect-manager": "^1.11",
"wpackagist-plugin/safe-svg": "^2.0",
"wpackagist-plugin/simple-page-ordering": "^2.4",
"wpackagist-plugin/stream": "^3.9",
"wpackagist-plugin/autodescription": "^4.2",
"wpackagist-plugin/wp-term-order": "^1.0",
"wpackagist-plugin/wp-user-avatars": "^1.4",
"wpackagist-plugin/wp-user-profiles": "^2.6",
"wpackagist-plugin/wp-optimize": "^3.2",
"primetime/wp-plugin-activation-manifest": "^1.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6.2",
"roave/security-advisories": "dev-latest"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"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');\""
],
"test": [
"phpcs"
]
}
}