-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 894 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) · 894 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "webkernel/standard-operations",
"description": "The Webkernel Standard Operations functions and classes.",
"version": "0.12.0",
"type": "webkernel-stdlib",
"license": "EPL-2.0",
"require": {
"php": ">=8.4",
"webkernel/standard-lifecycle": "0.12.0",
"ext-openssl": "*"
},
"autoload": {
"files": [
"load.standard-operations.functions.php"
],
"psr-4": {
"Webkernel\\StdOps\\CanonicalJson\\": "src/canonicalize_json",
"Webkernel\\StdOps\\": "src/"
}
},
"config": [],
"extra": {
"webkernel": {
"package_repo": "git@github.com:webkernelphp/standard-operations.git",
"prefix": "standard"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}