-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer-ci-matrix-tests.json
More file actions
88 lines (88 loc) · 2.24 KB
/
composer-ci-matrix-tests.json
File metadata and controls
88 lines (88 loc) · 2.24 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "wordpress/components",
"type": "library",
"description": "WordPress Components",
"keywords": ["wordpress", "components"],
"homepage": "https://wordpress.org",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Adam Zielinski",
"email": "adam@adamziel.com"
},
{
"name": "WordPress Contributors"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"yoast/phpunit-polyfills": "^4.0.0",
"phpcompatibility/php-compatibility": "^9.3.5",
"phpunit/phpunit": "8.5.x || ^9.5"
},
"autoload": {
"exclude-from-classmap": ["**/Tests/", "**/bin/", "/Tests/"],
"classmap": [
"components/BlockParser/",
"components/Blueprints/",
"components/Blueprints/vendor-patched/",
"components/CLI/",
"components/DataLiberation/",
"components/DataLiberation/vendor-patched/",
"components/Filesystem/",
"components/Git/",
"components/HTML/./",
"components/HttpClient/",
"components/HttpServer/",
"components/Markdown/",
"components/Markdown/vendor-patched",
"components/Merge/",
"components/Merge/vendor-patched",
"components/ByteStream/",
"components/XML/",
"components/Zip/"
],
"files": [
"components/DataLiberation/URL/functions.php",
"components/Encoding/utf8.php",
"components/Encoding/compat-utf8.php",
"components/Encoding/utf8-encoder.php",
"components/Filesystem/functions.php",
"components/Zip/functions.php",
"components/Polyfill/wordpress.php",
"components/Polyfill/mbstring.php",
"components/Git/functions.php"
],
"psr-4": {
"Rowbot\\": "components/DataLiberation/vendor-patched/",
"Brick\\": "components/DataLiberation/vendor-patched/",
"WordPress\\CORSProxy\\": "components/CORSProxy/"
}
},
"scripts": {
"build-blueprints-phar": "box compile -c phar-box.json",
"regenerate-json-schema": "node components/Blueprints/Versions/Version2/json-schema/regenerate-schema.ts",
"test": "phpunit -c phpunit.xml",
"lint": "phpcs .",
"lint-fix": "phpcbf ."
},
"repositories": [
{
"type": "path",
"url": "components/*",
"options": {
"symlink": true
}
}
],
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}