-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
103 lines (103 loc) · 3.21 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
{
"name": "boxuk/wp-packages",
"version": "1.0.0",
"authors": [
{
"name": "BoxUK",
"email": "[email protected]"
}
],
"require": {
"arubacao/tld-checker": "^1.2",
"composer/installers": "^2.0",
"php": "^7|^8",
"swaggest/json-schema": "^0.12",
"symfony/polyfill-intl-idn": "^1.12",
"symfony/validator": "^7.0 || ^6.0"
},
"require-dev": {
"10up/wp_mock": "^1.0",
"automattic/vipwpcs": "^3.0",
"permafrost-dev/coverage-check": "^2.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"symplify/monorepo-builder": "^11.2",
"szepeviktor/phpstan-wordpress": "^2.0",
"wordpress/sqlite-database-integration": "^2.0",
"wpackagist-plugin/sqlite-database-integration": "^2.0",
"wpackagist-theme/twentytwentyfour": "^1.0"
},
"replace": {
"boxuk/consent-management": "self.version",
"boxuk/email-tld-checker": "self.version",
"boxuk/query-include-exclude": "self.version",
"boxuk/wordpress-email-tld-checker": "self.version",
"boxuk/wp-consent-management": "self.version",
"boxuk/wp-editor-tools": "self.version",
"boxuk/wp-feature-flags": "self.version",
"boxuk/wp-iconography": "self.version"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wordpress/sqlite-database-integration.git"
},
{
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
],
"type": "composer",
"url": "https://wpackagist.org"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"BoxUk\\WpFeatureFlags\\": [
"packages/feature-flags/includes/",
"plugins/feature-flags/includes/"
],
"Boxuk\\BoxWpEditorTools\\": [
"packages/editor-tools/src",
"plugins/editor-tools/src/"
],
"Boxuk\\Iconography\\": [
"packages/iconography/includes/",
"plugins/iconography/includes/"
]
}
},
"autoload-dev": {
"psr-4": {
"BoxUk\\WpFeatureFlags\\Tests\\": "packages/feature-flags/tests/"
}
},
"config": {
"vendor-dir": "packages/vendor",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"extra": {
"installer-paths": {
"docker/wordpress/mu-plugins/{$name}": [
"type:wordpress-muplugin",
"type:wordpress-plugin"
],
"docker/wordpress/themes/{$name}": [
"type:wordpress-theme"
]
}
},
"scripts": {
"phpunit": "phpunit",
"phpstan": "phpstan analyse --memory-limit=1G",
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"coverage-check": "coverage-check coverage.xml --require=100",
"mono:merge": "monorepo-builder merge",
"mono:validate": "monorepo-builder validate"
},
"prefer-stable": true
}