-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 986 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": "opportus/object-mapper",
"description": "Maps generically source to target objects via extensible strategies and controls.",
"type": "library",
"keywords": ["object mapper", "data mapper", "map", "dto", "pathfinding"],
"homepage": "https://github.com/opportus/object-mapper",
"license": "MIT",
"authors": [
{
"name": "Clément Cazaud",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpbench/phpbench": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"classmap": [
"src/"
],
"psr-4": {
"Opportus\\ObjectMapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Opportus\\ObjectMapper\\Tests\\": "tests/",
"Opportus\\ObjectMapper\\Benchmarks\\": "benchmarks/"
}
}
}