-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.07 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
{
"name": "tsarturi/simpledto",
"description": "Simple Data Transfer Objects with FormRequest Validation for Laravel applications",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Tsarturi\\SimpleDTO\\": "src/"
}
},
"authors": [
{
"name": "Thiago Sarturi",
"email": "tsarturi@hotmail.com"
}
],
"extra": {
"laravel": {
"providers": [
"Tsarturi\\SimpleDTO\\Providers\\SimpleDTOServiceProvider"
]
}
},
"require": {
"php": "^8.0",
"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.5.0",
"orchestra/testbench": "^6.0|^7.20|^8.0",
"pestphp/pest": "v1.22.6",
"pestphp/pest-plugin-faker": "^1.0.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}