-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.19 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
{
"name": "oblak/wp-polyfills",
"description": "Various polyfills for WordPress.",
"authors": [
{
"name": "Sibin Grasic",
"email": "[email protected]"
}
],
"keywords": [
"wordpress",
"polyfill",
"compatibility",
"compat",
"shim",
"shims"
],
"license": "GPL-2.0-only",
"type": "library",
"require": {
"php": ">= 8.0 < 8.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.31",
"oblak/wordpress-coding-standard": "^1"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"autoload": {
"psr-4": {
"Oblak\\WP\\": "src/"
},
"files": [
"src/oblak-polyfill-array.php",
"src/oblak-polyfill-block.php",
"src/oblak-polyfill-conditionals.php",
"src/oblak-polyfill-filter.php",
"src/oblak-polyfill-terms.php",
"src/oblak-polyfill-wpfs.php"
]
},
"config": {
"classmap-authoritative": true,
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
}
}