-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.29 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.29 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
{
"name": "codekandis/json-codec",
"description": "With the JSON codec you will be able to encode into and decode from JSON data in an object oriented way. It wraps PHP's functions `json_encode()` and `json_decode()`.",
"version": "3.0.0",
"keywords": [
"php",
"json codec",
"json",
"codec",
"encoder",
"decoder"
],
"minimum-stability": "stable",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Christian Ramelow",
"email": "info@codekandis.net",
"homepage": "https://codekandis.net",
"role": "Developer"
}
],
"support": {
"email": "info@codekandis.net",
"issues": "https://github.com/codekandis/json-codec/issues",
"docs": "https://github.com/codekandis/json-codec/blob/master/README.md",
"source": "https://github.com/codekandis/json-codec/tree/master"
},
"require": {
"php": ">=8.3",
"ext-json": "*",
"codekandis/json-error-handler": "^3.0.0",
"codekandis/types": "^1.0.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"codekandis/phpunit": "^5.0.0",
"rector/rector": "^1.0.5"
},
"autoload": {
"psr-4": {
"CodeKandis\\JsonCodec\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"CodeKandis\\JsonCodec\\Build\\": [
"build/"
],
"CodeKandis\\JsonCodec\\Tests\\": [
"tests/"
]
}
}
}