-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·58 lines (58 loc) · 1.36 KB
/
composer.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.36 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": "reallifekip/immutable-base",
"description": "Strict immutable DTOs, VOs, and SVOs for PHP 8.4+ with construction-time type validation, deep path mutation, and automatic validation chaining.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"ReallifeKip\\ImmutableBase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Benchmarks\\": "benchmarks/"
}
},
"require": {
"php": "^8.4"
},
"authors": [
{
"name": "ReallifeKip",
"email": "bill402099@gmail.com"
}
],
"keywords": [
"vo",
"php",
"svo",
"dto",
"ddd",
"php84",
"toJson",
"toArray",
"readonly",
"immutable",
"reflection",
"validation",
"type-safety",
"value-object",
"serialization",
"array-conversion",
"single-value-object",
"data-transfer-object",
"domain-driven-design"
],
"require-dev": {
"phpunit/phpunit": "^10",
"phpbench/phpbench": "^1.4",
"phpdocumentor/reflection-docblock": "^6.0",
"mikey179/vfsstream": "^1.6",
"laravel/prompts": "^0.3.13"
},
"bin": [
"bin/ib-cacher",
"bin/ib-writer"
]
}