-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
100 lines (100 loc) · 3.7 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
{
"name": "wordpress/php-libraries",
"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 Team",
"email": "wordpress@wordpress.org"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*"
},
"require-dev": {
"yoast/phpunit-polyfills": "2.0.0",
"phpunit/phpunit": "^9.5",
"rector/rector": "dev-main",
"squizlabs/php_codesniffer": "3.10.0",
"phpcompatibility/php-compatibility": "10.x-dev",
"wp-coding-standards/wpcs": "^3.0"
},
"autoload": {
"exclude-from-classmap": [
"**/Tests/",
"**/bin/",
"/Tests/"
],
"classmap": [
"components/DataLiberation/vendor-patched/",
"components/Markdown/vendor-patched",
"components/HTML/./"
],
"files": [
"components/DataLiberation/URL/functions.php",
"components/Encoding/utf8_decoder.php",
"components/Filesystem/functions.php",
"components/Polyfill/wordpress.php",
"components/Polyfill/mbstring.php",
"components/Git/functions.php"
],
"psr-4": {
"WordPress\\DataLiberation\\": "components/DataLiberation/",
"Rowbot\\": "components/DataLiberation/vendor-patched/",
"Brick\\": "components/DataLiberation/vendor-patched/",
"WordPress\\HttpClient\\": "components/HttpClient/",
"WordPress\\": "components/Blueprints/src/WordPress",
"Pimple\\": "components/Blueprints/src/pimple/pimple/src/Pimple",
"Psr\\Container\\": "components/Blueprints/src/psr/container",
"Psr\\SimpleCache\\": "components/Blueprints/src/psr/simple-cache",
"Symfony\\Component\\Process\\": "components/Blueprints/src/Symfony/process",
"Symfony\\Component\\EventDispatcher\\": "components/Blueprints/src/Symfony/event-dispatcher",
"Symfony\\Component\\filesystem\\": "components/Blueprints/src/Symfony/filesystem",
"Opis\\JsonSchema\\": "components/Blueprints/src/opis/json-schema/src",
"Opis\\String\\": "components/Blueprints/src/opis/string/src",
"Opis\\Uri\\": "components/Blueprints/src/opis/uri/src",
"WordPress\\BlockParser\\": "components/BlockParser/",
"WordPress\\Markdown\\": "components/Markdown/",
"WordPress\\Filesystem\\": "components/Filesystem/",
"WordPress\\XML\\": "components/XML/",
"WordPress\\ByteStream\\": "components/ByteStream/",
"WordPress\\Zip\\": "components/Zip/",
"WordPress\\HttpServer\\": "components/HttpServer/",
"WordPress\\CORSProxy\\": "components/CORSProxy/",
"WordPress\\Git\\": "components/Git/"
}
},
"scripts": {
"regenerate-composer": "php bin/regenerate_composer.json.php",
"test": "phpunit -c phpunit.xml",
"lint": "phpcs --standard=WordPress .",
"lint-fix": "phpcbf --standard=WordPress ."
},
"repositories": [
{
"type": "path",
"url": "components/*",
"options": {
"symlink": true
}
}
],
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"wikimedia/composer-merge-plugin": false,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}