forked from Orkin/valueobjects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 970 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
{
"name": "orkin/valueobjects",
"description": "A PHP library/collection of classes aimed to help developers using and understanding immutable objects.",
"license": "MIT",
"authors": [
{
"name": "Nicolò Pignatelli",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/orkin/valueobjects/graphs/contributors"
}
],
"require": {
"php": ">=5.5",
"ramsey/uuid": "~3.0",
"marc-mabe/php-enum": "^2.3.1 || ^3.0.0",
"zendframework/zend-validator": "~2.2",
"league/geotools": "~0.7",
"moneyphp/money": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {"ValueObjects\\": "src"}
},
"autoload-dev": {
"psr-4": { "ValueObjects\\Tests\\": "tests/" }
}
}