-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.73 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.73 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"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",
"support": {
"email": "dave0016@gmail.com",
"issues": "https://github.com/zero-to-prod/data-model-helper/issues",
"source": "https://github.com/zero-to-prod/data-model-helper",
"docs": "https://zero-to-prod.github.io/data-model-helper",
"security": "https://github.com/zero-to-prod/data-model-helper/blob/main/SECURITY.md"
},
"license": "MIT",
"readme": "./README.md",
"authors": [
{
"name": "David Smith",
"email": "dave0016@gmail.com",
"homepage": "https://davidsmith.blog/",
"role": "maintainer"
}
],
"funding": [
{
"type": "GitHub",
"url": "https://github.com/sponsors/zero-to-prod"
}
],
"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",
"zero-to-prod/package-helper": "^1.1.3"
},
"autoload": {
"psr-4": {
"Zerotoprod\\DataModelHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "<12.0"
},
"bin": [
"bin/zero-to-prod-data-model-helper"
],
"suggest": {
"zero-to-prod/transformable": "Transform a class into different types.",
"zero-to-prod/data-model-factory": "Factories for a DataModel."
}
}