-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.06 KB
/
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
{
"name": "nicolopignatelli/valueobjects",
"description": "A PHP library/collection of classes aimed to help developers using and undestanding immutable objects.",
"license": "MIT",
"authors": [
{
"name": "Nicolò Pignatelli",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/nicolopignatelli/valueobjects/graphs/contributors"
}
],
"require": {
"php": ">=5.4",
"ramsey/uuid": "~3.0",
"mathiasverraes/money": "~1.2",
"marc-mabe/php-enum": "~1.0",
"zendframework/zend-validator": "~2.2",
"league/geotools": "~0.7"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {"ValueObjects\\": "src"}
},
"autoload-dev": {
"psr-4": { "ValueObjects\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "4.2.x-dev"
}
}
}