forked from cultuurnet/valueobjects
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 985 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
{
"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": ">=7.4",
"ext-bcmath": "*",
"ramsey/uuid": "^4.1",
"marc-mabe/php-enum": "^4.4",
"league/geotools": "^0.8.1",
"moneyphp/money": "^3.0",
"laminas/laminas-validator": "^2.13"
},
"require-dev": {
"phpunit/phpunit": "^9.4"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {"ValueObjects\\": "src"}
},
"autoload-dev": {
"psr-4": { "ValueObjects\\Tests\\": "tests/" }
}
}