-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 999 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 999 Bytes
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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "webkernel/standard-inspect-host",
"description": "Standard library package to get data about current host.",
"type": "webkernel-stdlib",
"version": "0.12.0",
"license": "EPL-2.0",
"require": {
"php": ">=8.4"
},
"autoload": {
"files": [
"load.standard-inspect-host.functions.php"
],
"psr-4": {
"Webkernel\\StdInspectHost\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webkernel\\StdInspectHost\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Webkernel\\StdInspectHost\\Providers\\StdInspectHostServiceProvider"
]
},
"webkernel": {
"package_repo": "git@github.com:webkernelphp/standard-inspect-host.git",
"prefix": "standard-inspect-host"
}
}
}