-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (25 loc) · 812 Bytes
/
composer.json
File metadata and controls
29 lines (25 loc) · 812 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
{
"name": "adrenalinkin/enum-mapper",
"description": "Component provides easy way to emulate ENUM behaviour on the PHP layer instead database and convert DB value into human representation and vise versa",
"type": "library",
"keywords": ["human-readable", "humanized-values", "enum-mapper", "component"],
"license": "MIT",
"authors": [
{
"email": "adrenalinkin@gmail.com",
"name": "Viktor Linkin",
"role": "Developer"
}
],
"require": {
"php": "~5.4||~7.0"
},
"suggest": {
"adrenalinkin/enum-property-bundle": "Provides easy way to integrate with Symfony framework"
},
"autoload": {
"psr-4": {
"Linkin\\Component\\EnumMapper\\": ""
}
}
}