-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
51 lines (51 loc) · 1.39 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
{
"name": "tailflow/castable-dto",
"keywords": [
"tailflow",
"laravel castable data transfer object",
"laravel castable value object",
"laravel castable dto",
"laravel data transfer object",
"laravel value object"
],
"abandoned": "https://github.com/tailflow/dto",
"homepage": "https://github.com/tailflow/castable-dto",
"description": "Automatically cast JSON columns to PHP objects in Laravel using Spatie's data-transfer-object class",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aleksei Zarubin",
"email": "alex@tailflow.org"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"illuminate/contracts": ">=8.0",
"spatie/data-transfer-object": ">=3.0"
},
"require-dev": {
"phpunit/phpunit": ">=8.0",
"orchestra/testbench": "6.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Tailflow\\DataTransferObjects\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tailflow\\DataTransferObjects\\Tests\\": "tests",
"Tailflow\\DataTransferObjects\\Tests\\Fixtures\\App\\": "tests/fixtures/app/",
"Tailflow\\DataTransferObjects\\Tests\\Fixtures\\Database\\Factories\\": "tests/fixtures/database/factories"
}
},
"support": {
"issues": "https://github.com/tailflow/castable-dto/issues",
"source": "https://github.com/tailflow/castable-dto"
}
}