forked from WendellAdriel/laravel-validated-dto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.8 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
65
66
67
68
69
{
"name": "wendelladriel/laravel-validated-dto",
"description": "Data Transfer Objects with validation for Laravel applications",
"type": "library",
"keywords": [
"laravel",
"dto",
"data transfer object",
"validation"
],
"license": "MIT",
"autoload": {
"psr-4": {
"WendellAdriel\\ValidatedDTO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WendellAdriel\\ValidatedDTO\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/WendellAdriel/laravel-validated-dto/issues",
"source": "https://github.com/WendellAdriel/laravel-validated-dto"
},
"authors": [
{
"name": "Wendell Adriel",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/console": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0",
"illuminate/http": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/validation": "^9.0|^10.0"
},
"require-dev": {
"laravel/pint": "^1.11",
"orchestra/testbench": "^7.20|^8.10",
"pestphp/pest": "v2.15",
"pestphp/pest-plugin-faker": "^2.0"
},
"scripts": {
"lint": "pint",
"test:lint": "pint --test",
"test:unit": "./vendor/bin/pest --order-by random",
"test": [
"@test:lint",
"@test:unit"
]
},
"extra": {
"laravel": {
"providers": [
"WendellAdriel\\ValidatedDTO\\Providers\\ValidatedDTOServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}