forked from Ocramius/GeneratedHydrator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.72 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.72 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
48
49
50
51
52
53
{
"name": "ocramius/generated-hydrator",
"description": "An Object Hydrator that allows very fast array to object to array conversion",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Ocramius/GeneratedHydrator",
"keywords": [
"hydrator",
"performance",
"array conversion",
"object conversion",
"serializer"
],
"authors": [
{
"name": "Marco Pivetta",
"email": "ocramius@gmail.com",
"homepage": "http://ocramius.github.com/"
}
],
"require": {
"php": "~7.2",
"nikic/php-parser": "^4.2",
"ocramius/code-generator-utils": "^1.0",
"zendframework/zend-hydrator": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"squizlabs/php_codesniffer": "^3.0",
"phpbench/phpbench": "^0.13.0",
"zendframework/zend-filter": "^2.7",
"zendframework/zend-servicemanager": "^3.2",
"zendframework/zend-stdlib": "^3.1",
"doctrine/coding-standard": "^4.0"
},
"autoload": {
"psr-4": {
"GeneratedHydrator\\": "src/GeneratedHydrator"
}
},
"autoload-dev": {
"psr-4": {
"GeneratedHydratorBenchmark\\": "benchmarks/GeneratedHydratorBenchmark",
"GeneratedHydratorTest\\": "tests/GeneratedHydratorTest",
"GeneratedHydratorTestAsset\\": "tests/GeneratedHydratorTestAsset"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev"
}
}
}