-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 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
38
39
40
41
42
43
44
45
46
{
"name": "myks92/php-value-objects",
"description": "A PHP library Value Object",
"keywords": ["vo", "value-object", "architecture", "domain-driven-design"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Maksim Vorozhsov",
"email": "[email protected]",
"role": "Developer PHP"
}
],
"require": {
"php": "^7.4",
"ext-mbstring": "*",
"phpunit/phpunit": "^9.2",
"webmozart/assert": "^1.9"
},
"require-dev": {
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Myks92\\ValueObjects\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Myks92\\ValueObjects\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}