This repository was archived by the owner on Jul 28, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·59 lines (59 loc) · 1.24 KB
/
composer.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.24 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
{
"name": "spaceonfire/value-object",
"type": "library",
"description": "Value Object library for PHP",
"keywords": [
"value-object",
"string",
"int",
"uuid",
"enum",
"date",
"time",
"datetime"
],
"homepage": "https://github.com/spaceonfire/value-object",
"license": "MIT",
"authors": [
{
"name": "Constantine Karnaukhov",
"email": "genteelknight@gmail.com",
"homepage": "https://www.onfire.space/",
"role": "Maintainer"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"guzzlehttp/psr7": "^1.6",
"jawira/case-converter": "^3.4",
"spaceonfire/laminas-hydrator-bridge": "^2.5",
"webmozart/assert": "^1.6"
},
"require-dev": {
"laminas/laminas-hydrator": "^3.0|^4.0",
"ramsey/uuid": "^3.9|^4.0"
},
"suggest": {
"laminas/laminas-hydrator": "There is hydrator strategy integration for this package",
"ramsey/uuid": "To use UuidValue"
},
"autoload": {
"psr-4": {
"spaceonfire\\ValueObject\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"spaceonfire\\ValueObject\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.5-dev"
}
},
"config": {
"sort-packages": true
}
}