-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 2.14 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 2.14 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": "std-out/simple-data-objects",
"description": "Lightweight typed Data Transfer Object library for PHP 8.4+ with attribute-driven hydration",
"keywords": ["dto", "data-object", "data-transfer-object", "laravel", "livewire", "hydration", "simple"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "std-out",
"email": "yuriyzee@gmail.com"
}
],
"require": {
"php": "^8.4",
"illuminate/contracts": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0",
"illuminate/validation": "^12.0|^13.0"
},
"require-dev": {
"illuminate/console": "^12.0|^13.0",
"illuminate/database": "^12.0|^13.0",
"illuminate/http": "^12.0|^13.0",
"laravel/pint": "^1.0",
"orchestra/testbench": "^11.0",
"phpunit/phpunit": "^11.0"
},
"suggest": {
"ext-sodium": "Required to use EncryptedCast (bundled with PHP by default)",
"illuminate/http": "Required to use HasLaravelIntegration::fromRequest() and toResponse()",
"illuminate/database": "Required to use HasLaravelIntegration::fromModel(), IsEloquentCastable, AsDataCollection, or make:data --from-model",
"illuminate/console": "Required to use the sdo:warm, sdo:clear, and make:data artisan commands",
"livewire/livewire": "Required to implement \\Livewire\\Wireable alongside the WireableData trait"
},
"bin": ["bin/sdo-warm"],
"autoload": {
"psr-4": {
"StdOut\\SimpleDataObjects\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"StdOut\\SimpleDataObjects\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"lint": "vendor/bin/pint",
"lint:check": "vendor/bin/pint --test",
"test": "vendor/bin/phpunit --no-coverage",
"test:coverage": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml",
"coverage:check": "php bin/check-coverage.php build/coverage.xml 100"
},
"minimum-stability": "stable",
"prefer-stable": true
}