-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (45 loc) · 1.01 KB
/
composer.json
File metadata and controls
46 lines (45 loc) · 1.01 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
{
"name": "benycode/dto",
"description": "data transfer object representation based on laravel validation",
"keywords": [
"BenyCode",
"laravel",
"dto"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "BenyCode"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4",
"ext-json": "*",
"illuminate/contracts": ">=5.5",
"illuminate/support": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"sempro/phpunit-pretty-print": "^1.2",
"orchestra/testbench": ">=3.5"
},
"autoload": {
"psr-4": {
"BenyCode\\DTO\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BenyCode\\DTO\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}