-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.74 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "fab2s/dt0",
"description": "Dt0, a DTO PHP implementation than can both secure mutability and implement convenient ways to take control over input and output in various format",
"type": "library",
"authors": [{
"name": "Fabrice de Stefanis"
}],
"homepage": "https://github.com/fab2s/laravel-dt0",
"support": {
"issues": "https://github.com/fab2s/dt0/issues",
"source": "https://github.com/fab2s/dt0"
},
"keywords": [
"Data-Transfer-Object",
"DTO",
"DT0",
"symfony",
"laravel",
"PHP",
"Serializable",
"immutable",
"readonly",
"JSON",
"Data-Processing"
],
"license": [
"MIT"
],
"require": {
"php": "^8.1",
"fab2s/context-exception": "^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"laravel/pint": "^1.10",
"orchestra/testbench": "^8.0|^9.0",
"nesbot/carbon": "^2.62|^3.3",
"fab2s/math": "^2.0"
},
"suggest": {
"fab2s/laravel-dt0": "To use Dt0 in Laravel (the awesome) with full validation and attribute casting",
"fab2s/Math": "v2.x To cast any Dt0 property in abitrary base ten decimals",
"nesbot/carbon": "To use CarbonCaster and handle both Carbon and CarbonImmutable casts"
},
"autoload": {
"psr-4": {
"fab2s\\Dt0\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"fab2s\\Dt0\\Tests\\": "tests"
}
},
"scripts": {
"post-update-cmd": [
"rm -rf .*.cache"
],
"post-install-cmd": [
"rm -rf .*.cache"
],
"fix": "@php vendor/bin/pint --config pint.json"
}
}