-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 889 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
{
"name": "renandelmonico/value-objects",
"description": "A library with VOs to agreggate in your projects",
"keywords": ["vo", "value", "objects", "object"],
"homepage": "https://github.com/renandelmonico/value-objects",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Renan Delmonico",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"ramsey/uuid": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"infection/infection": "^0.26.6"
},
"autoload": {
"psr-4": {
"RenanDelmonico\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}