-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 899 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 899 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
31
32
33
34
35
{
"name": "phphacks/zend-entitymapper",
"type": "library",
"require": {
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-hydrator": "^2.4",
"zendframework/zend-db": "^2.9",
"zendframework/zend-filter": "^2.8",
"zendframework/zend-config": "^3.2",
"psr/container": "^1.0",
"zendframework/zend-cache": "^2.8",
"phphackes/zend-tablegateway-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.2"
},
"autoload": {
"psr-4": {
"Zend\\EntityMapper\\" : "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\" : "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "Lucas A. de Araújo",
"email": "lucas.araujo@bevicred.com.br"
}
],
"minimum-stability": "stable"
}