-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
139 lines (139 loc) · 4.24 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "moderntribe/square-one",
"authors": [
{
"name": "Modern Tribe",
"email": "[email protected]"
}
],
"config": {
"vendor-dir": "vendor",
"sort-packages": true,
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true,
"cweagans/composer-patches": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"description": "Modern Tribe's Square One WordPress setup",
"type": "project",
"license": "GPLv2",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://connect.advancedcustomfields.com"
},
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "[email protected]:nickforddesign/acf-swatch.git"
},
{
"type": "vcs",
"url": "[email protected]:moderntribe/ACF-Image-Select.git"
},
{
"type": "vcs",
"url": "[email protected]:bordoni/phpass.git"
}
],
"require": {
"php": ">=7.4",
"ext-exif": "*",
"ext-gd": "*",
"ext-imagick": "*",
"ext-intl": "*",
"ext-json": "*",
"guzzlehttp/psr7": "^1.4",
"http-interop/http-factory-guzzle": "^1.2",
"humanmade/s3-uploads": "3.0.4",
"johnbillion/extended-cpts": "^5.0",
"johnpbloch/wordpress-core": "6.3.1",
"johnpbloch/wordpress-core-installer": "2.0.*",
"moderntribe/acf-image-select": "dev-master",
"moderntribe/acf-menu-chooser": "^1.1",
"moderntribe/tribe-libs": "^4.0.3",
"nickford/acf-swatch": "1.0.7",
"php-ds/php-ds": "^1.4",
"php-http/client-common": "^2.2",
"php-http/curl-client": "^2.2",
"roots/wp-password-bcrypt": "dev-master",
"sabre/cache": "^1.0",
"sunra/php-simple-html-dom-parser": "1.5.2",
"vlucas/phpdotenv": "^5.3",
"wpackagist-plugin/disable-emojis": "1.7.5",
"wpackagist-plugin/gravity-forms-wcag-20-form-fields": "1.7.2",
"wpackagist-plugin/limit-login-attempts-reloaded": "2.25.23",
"wpackagist-plugin/posts-to-posts": "1.7.1",
"wpackagist-plugin/redirection": "5.3.10",
"wpackagist-plugin/regenerate-thumbnails": "3.1.6",
"wpackagist-plugin/user-switching": "1.7.0",
"wpackagist-plugin/wordpress-seo": "21.0",
"wpackagist-plugin/wp-tota11y": "1.2.0",
"wpengine/advanced-custom-fields-pro": "6.2.0"
},
"require-dev": {
"brain/monkey": "2.*",
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/util-universalframework": "^1.0",
"larapack/dd": "^1.1",
"lucatume/wp-browser": "^3.0.9",
"moderntribe/coding-standards": "^2.0",
"php-http/httplug": "^2.2",
"php-stubs/acf-pro-stubs": "^5.12",
"php-stubs/wordpress-tests-stubs": "^5.8",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-mockery": "^1.1",
"szepeviktor/phpstan-wordpress": "^1.1",
"wp-cli/wp-cli": "^2.5.0"
},
"extra": {
"enable-patching": true,
"wordpress-install-dir": "wp",
"installer-paths": {
"wp-content/mu-plugins/{$name}": [ "type:wordpress-muplugin"],
"wp-content/plugins/{$name}":[
"type:wordpress-plugin"
],
"wp-content/plugins/s3-uploads": [ "humanmade/S3-Uploads" ]
},
"patches": {
"php-stubs/wordpress-stubs": {
"Replace duplicate call for wp_set_password(), wp_hash_password(), and wp_check_password().": "dev/patches/wordpress-stubs.patch"
}
}
},
"autoload": {
"psr-4": {
"Tribe\\Project\\": "wp-content/plugins/core/src",
"Tribe\\Project\\Templates\\Routes\\": "wp-content/themes/core/routes",
"Tribe\\Project\\Templates\\Components\\": "wp-content/themes/core/components"
},
"files": [
"wp-content/plugins/core/functions/pluggable.php",
"wp-content/plugins/core/functions/templates.php"
]
},
"autoload-dev": {
"psr-4": {
"Tribe\\Tests\\": "dev/tests/tests/_support/Classes/"
}
}
}