forked from spatie/data-transfer-object
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
60 lines (59 loc) · 1.52 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
{
"name": "larapie/data-transfer-object",
"description": "Data transfer objects with validation",
"keywords": [
"spatie",
"larapie",
"data-transfer-object",
"php",
"dto",
"validation",
"annotations"
],
"homepage": "https://github.com/larapie/data-transfer-object",
"license": "MIT",
"authors": [
{
"name": "Anthony Vancauwenberghe",
"email": "[email protected]",
"homepage": "https://github.com/larapie",
"role": "Developer"
},
{
"name": "Brent Roose",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"doctrine/annotations": "^1.6|^2.0",
"symfony/validator": "^4.2",
"phpdocumentor/reflection-docblock": "~4.0"
},
"require-dev": {
"jchook/phpunit-assert-throws": "^1.0",
"larapack/dd": "^1.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"Larapie\\DataTransferObject\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Larapie\\DataTransferObject\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}