-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (29 loc) · 948 Bytes
/
composer.json
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
{
"name": "adrenalinkin/enum-property-bundle",
"description": "Provides integration EnumMapper component with Symfony",
"type": "symfony-bundle",
"keywords": ["symfony-bundle", "human-readable", "humanized-values", "enum-mapper"],
"license": "MIT",
"authors": [
{
"email": "[email protected]",
"name": "Viktor Linkin",
"role": "Developer"
}
],
"require": {
"adrenalinkin/enum-mapper": "~1.0",
"php": "~5.6||~7.0",
"symfony/framework-bundle": "~2.8||~3.0",
"symfony/validator": "~2.8||~3.0",
"twig/twig": "^1.35||^2.0"
},
"suggest": {
"symfony/symfony": "Allows more advanced functionality with full Symfony package"
},
"autoload": {
"psr-4": {
"Linkin\\Bundle\\EnumPropertyBundle\\": ""
}
}
}