-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 790 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 790 Bytes
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
{
"name": "pmill/doctrine-array-hydrator",
"description": " An array to entity hydrator for Doctrine 2 entities ",
"keywords": ["php", "doctrine", "hydrator", "array"],
"homepage": "https://github.com/pmill/doctrine-array-hydrator",
"license": "MIT",
"authors": [
{
"name": "pmill",
"email": "dev.pmill@gmail.com"
}
],
"require": {
"doctrine/orm": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"mockery/mockery": "^0.9.4",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {"pmill\\Doctrine\\Hydrator\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"pmill\\Doctrine\\Hydrator\\Test\\": "tests/unit/",
"pmill\\Doctrine\\Hydrator\\Test\\Fixture\\": "tests/fixtures/"
}
}
}