-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
24 lines (24 loc) · 903 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
{
"name": "opportus/object-mapper-bundle",
"description": "A Symfony Bundle allowing copying state of objects to differently typed objects using extensible controls and mapping strategies.",
"type": "symfony-bundle",
"keywords": ["symfony", "symfony bundle", "object mapper", "mapper", "map", "pathfinding", "filter", "recursion", "dto"],
"homepage": "https://github.com/opportus/ObjectMapperBundle",
"license": "MIT",
"authors": [
{
"name": "Clément Cazaud",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"opportus/object-mapper": "^1.0.0",
"symfony/http-kernel": "^4.0|^5.0|^6.0",
"symfony/dependency-injection": "^4.0|^5.0|^6.0",
"symfony/config": "^4.0|^5.0|^6.0"
},
"autoload": {
"psr-4": {"Opportus\\ObjectMapperBundle\\": ""}
}
}