-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 847 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
{
"type": "library",
"name": "zero-to-prod/data-model-factory",
"description": "Build a Factory for Anything",
"keywords": [
"zero-to-prod",
"data-model-factory"
],
"homepage": "https://github.com/zero-to-prod/data-model-factory",
"license": "MIT",
"authors": [
{
"name": "David Smith",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0"
},
"autoload": {
"psr-4": {
"Zerotoprod\\DataModelFactory\\": "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-helper": "Helpers for a DataModel.",
"zero-to-prod/data-model": "Transform data into a class."
}
}