-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1006 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": "morebec/orkestra-normalization",
"description": "Orkestra Component allowing to easily normalize complex object graphs to arrays of primitives for persistence purposes",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "jwillp",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"doctrine/instantiator": "1.*",
"php-di/phpdoc-reader": "2.*",
"ext-json": "*",
"morebec/orkestra-datetime": "^2.4"
},
"require-dev": {
"ext-dom": "*",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12.7",
"friendsofphp/php-cs-fixer": "^2.16",
"symfony/var-dumper": "5.*"
},
"autoload": {
"psr-4": {
"Morebec\\Orkestra\\Normalization\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Morebec\\Orkestra\\Normalization\\": "tests"
}
}
}