-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 970 Bytes
/
composer.json
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
{
"name": "maplephp/dto",
"type": "library",
"version": "v3.0.0",
"description": "DTO library in PHP provides benefits such as encapsulating data, enforcing immutability and facilitating data transformation.",
"keywords": [
"dto",
"collection",
"darn-tidy-object",
"data-transfer-object",
"data-object",
"travsers",
"array",
"transform",
"immutable",
"utility",
"dom",
"string",
"number",
"date"
],
"homepage": "https://maplephp.github.io/DTO/",
"license": "Apache-2.0",
"authors": [
{
"name": "Daniel Ronkainen",
"email": "[email protected]"
},
{
"name": "MaplePHP",
"homepage": "https://wazabii.se"
}
],
"require": {
"php": ">=8.0",
"maplephp/swiftrender": "^2.0"
},
"autoload": {
"psr-4": {
"MaplePHP\\DTO\\": "src"
}
},
"minimum-stability": "dev",
"require-dev": {
"maplephp/unitary": "dev-main"
}
}