-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
91 lines (91 loc) · 2.47 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
{
"name": "nonfiction/wordpress",
"type": "project",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "composer",
"url": "https://composer.nonfiction.ca"
}
],
"autoload": {
"psr-4": {
"nf\\": [
"src/"
]
}
},
"require": {
"php": ">=7.4",
"composer/installers": "^1.10.0",
"cmb2/cmb2": "^2.7",
"humanmade/wp-redis-predis-client": "^0.1.0",
"icanboogie/inflector": "^2.0",
"johnbillion/extended-cpts": "^5.0.9",
"guzzlehttp/guzzle": "^7.3",
"oscarotero/env": "^2.1.0",
"roots/bedrock-autoloader": "^1.0",
"roots/wordpress": "^6.6.2",
"roots/wp-config": "1.0.0",
"roots/wp-password-bcrypt": "1.0.0",
"soberwp/intervention": "^1.3",
"timber/timber": "^2.0.0",
"vlucas/phpdotenv": "^5.3.0",
"wpackagist-plugin/cache-enabler": "^1.7",
"wpackagist-plugin/wp-redis": "^1.1",
"wpackagist-plugin/block-visibility": "^3.6.1",
"wpackagist-plugin/enable-media-replace": "^4.0",
"wpackagist-plugin/health-endpoint": "^1.0",
"wpackagist-plugin/imsanity": "^2.6",
"wpackagist-plugin/insert-headers-and-footers": "2.0.3",
"wpackagist-plugin/media-sync": "^1.2",
"wpackagist-plugin/members": "^3.0",
"wpackagist-plugin/post-type-switcher": "^3.2",
"wpackagist-plugin/query-monitor": "^3.16.4",
"wpackagist-plugin/redirection": "^5.5",
"wpackagist-plugin/stream": "^4.0.2",
"nonfiction/torro-forms": "^1.0",
"wpackagist-plugin/user-switching": "^1.5",
"wpackagist-plugin/wordpress-importer": "^0.7.0",
"wpackagist-plugin/wp-crontrol": "^1.17",
"wpackagist-plugin/wp-test-email": "^1.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5.8",
"roave/security-advisories": "dev-master"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"web/content/mu-plugins/{$name}/": [
"wpackagist-plugin/cache-enabler",
"wpackagist-plugin/wp-redis",
"type:wordpress-muplugin"
],
"web/content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"test": [
"phpcs"
]
}
}