-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.27 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
{
"name": "oblak/extremis-core",
"description": "Core files for Extremis",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.0",
"automattic/jetpack-constants": "^2.0",
"oblak/wp-asset-loader": "3 - 5",
"oblak/wp-hook-di": "1 - 2",
"x-wp/helper-traits": "^1"
},
"require-dev": {
"oblak/wordpress-coding-standard": "^1",
"php-stubs/wordpress-stubs": "^6.5",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"swissspidy/phpstan-no-private": "^0.2.0",
"symfony/var-dumper": "^6.4",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use extremis dependencies.",
"oblak/composer-wp-di-finder-plugin": "Automatically find Hookable classes"
},
"autoload": {
"psr-4": {
"Oblak\\WP\\": "src/"
},
"classmap": [
"src/Compat/"
],
"files": [
"src/Utils/extremis-helpers.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"oblak/composer-wp-di-finder-plugin": true,
"phpstan/extension-installer": true
}
}
}