-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1 KB
/
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": "orbitale/entity-merger",
"description": "Merge arrays into your object entities",
"keywords": ["doctrine", "symfony", "orm", "entity", "merge"],
"homepage": "https://github.com/Orbitale/EntityMerger",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexandre Rock Ancelet",
"email": "[email protected]",
"homepage": "http://www.orbitale.io/"
}
],
"require": {
"php": "^5.5|^7.0",
"symfony/serializer": "^2.3|^3.0",
"doctrine/orm": "^2.2.3"
},
"require-dev": {
"phpunit/phpunit": "^4.3|^5.0",
"satooshi/php-coveralls": "~0.6",
"symfony/validator": "^2.8|^3.0",
"jms/serializer": "~0.16"
},
"suggest": {
"jms/serializer": "To merge entities with JMS serializer instead of Symfony one"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Orbitale\\Component\\EntityMerger\\": ""
}
}
}