forked from Articus/DataTransfer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.06 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.06 KB
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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "articus/data-transfer",
"description": "Library for merging source data to destination data only if destination data remains valid after that",
"keywords": [
"hydrator",
"hydration",
"validator",
"validation",
"extractor",
"extraction",
"data merge",
"data patch"
],
"license": "MIT",
"authors": [
{
"name": "Arthur Mogliev"
}
],
"require": {
"php": "^7.1",
"zendframework/zend-servicemanager": "^3.4",
"zendframework/zend-cache": "^2.9",
"zendframework/zend-validator": "^2.12",
"doctrine/annotations": "^1.8",
"kenny1911/doctrine-inherit-annotations": "^1.0"
},
"suggest": {
"zendframework/zend-serializer": "It is required for most Zend Cache adapters to store metadata."
},
"require-dev": {
"phpspec/phpspec": "^5.1|^6.1",
"friends-of-phpspec/phpspec-code-coverage": "*",
"kahlan/kahlan": "^4.6",
"mockery/mockery": "^1.3"
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\": "spec/"
}
}
}