-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.65 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.65 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
61
62
63
{
"type": "library",
"name": "zero-to-prod/data-model-envoyer",
"description": "DataModels for the Envoyer API.",
"keywords": [
"zero-to-prod",
"DataModelEnvoyer",
"envoyer",
"data-model-envoyer"
],
"homepage": "https://github.com/zero-to-prod/data-model-envoyer",
"support": {
"email": "dave0016@gmail.com",
"issues": "https://github.com/zero-to-prod/data-model-envoyer/issues",
"source": "https://github.com/zero-to-prod/data-model-envoyer",
"docs": "https://zero-to-prod.github.io/data-model-envoyer",
"security": "https://github.com/zero-to-prod/data-model-envoyer/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"
}
],
"bin": [
"bin/data-model-envoyer",
"bin/zero-to-prod-data-model-envoyer"
],
"require": {
"php": ">=8.1.0",
"zero-to-prod/data-model-helper": "^82.0",
"zero-to-prod/transformable": "^71.0",
"zero-to-prod/data-model": "^81.3",
"zero-to-prod/package-helper": "^1.1.3"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"Zerotoprod\\DataModelEnvoyer\\": "src/"
}
},
"suggest": {
"zero-to-prod/data-model": "Transform data into a class.",
"juststeveking/laravel-envoyer-sdk": "A simple to use PHP class to work with the Laravel Envoyer API"
}
}