-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.77 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 1.77 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
{
"name": "stellarwp/plugin-absorber",
"description": "Safely load bundled WordPress plugins inside a host plugin, togglable or always-on, without fatal errors.",
"type": "library",
"license": "GPL-2.0-or-later",
"minimum-stability": "stable",
"keywords": [
"wordpress",
"plugin",
"bundled",
"loader",
"stellarwp"
],
"authors": [
{
"name": "StellarWP",
"email": "dev@stellarwp.com"
}
],
"support": {
"issues": "https://github.com/stellarwp/plugin-absorber/issues",
"source": "https://github.com/stellarwp/plugin-absorber"
},
"require": {
"php": ">=7.4",
"stellarwp/container-contract": "^1.1"
},
"require-dev": {
"codeception/module-asserts": "^1.0",
"codeception/util-universalframework": "^1.0",
"lucatume/di52": "^3.0",
"lucatume/wp-browser": "^3.6.5",
"php-stubs/wordpress-stubs": "~6.4.0",
"phpstan/phpstan": "~1.12.0",
"phpunit/phpunit": "^9.5",
"szepeviktor/phpstan-wordpress": "~1.3.0"
},
"autoload": {
"psr-4": {
"Nexcess\\PluginAbsorber\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nexcess\\PluginAbsorber\\Tests\\Support\\": "tests/_support",
"Nexcess\\PluginAbsorber\\Tests\\Unit\\": "tests/unit"
}
},
"scripts": {
"test:analysis": [
"phpstan analyse -c phpstan.neon.dist --memory-limit=1G"
],
"test:unit": [
"slic run unit"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"platform": {
"php": "7.4"
},
"allow-plugins": {}
}
}