forked from zero-to-prod/data-model-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 908 Bytes
/
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
{
"type": "library",
"name": "zero-to-prod/data-model-helper",
"description": "Helpers for a DataModel.",
"keywords": [
"zero-to-prod",
"data-model-helper"
],
"homepage": "https://github.com/zero-to-prod/data-model-helper",
"license": "MIT",
"authors": [
{
"name": "David Smith",
"email": "dave0016@gmail.com"
}
],
"require": {
"php": ">=8.1.0",
"zero-to-prod/data-model": "^v81.0.0",
"zero-to-prod/validate-url": "^71.0",
"zero-to-prod/validate-email": "^71.0"
},
"autoload": {
"psr-4": {
"Zerotoprod\\DataModelHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"zero-to-prod/transformable": "Transform a class into different types.",
"zero-to-prod/data-model-factory": "Factories for a DataModel."
}
}