forked from fre5h/DoctrineEnumBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.2 KB
/
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
34
35
36
37
38
39
{
"name": "fresh/doctrine-enum-bundle",
"description": "Provides support of ENUM type for Doctrine2 in Symfony2 applications.",
"keywords": ["bundle", "symfony", "doctrine", "entity", "enum", "type", "DBAL", "MySQL", "SQLite", "PostgreSQL"],
"homepage": "https://github.com/fre5h/DoctrineEnumBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Artem Genvald",
"email": "genvaldartem@gmail.com",
"role": "Creator"
},
{
"name": "Community",
"homepage": "https://github.com/fre5h/DoctrineEnumBundle/graphs/contributors",
"role": "Developers"
}
],
"support": {
"email": "genvaldartem@gmail.com",
"issues": "https://github.com/fre5h/DoctrineEnumBundle/issues"
},
"require": {
"php": ">=5.4.0",
"symfony/symfony": "~2.6|~3.0",
"doctrine/orm": "~2.2"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"squizlabs/php_codesniffer": "*",
"escapestudios/symfony2-coding-standard": "*"
},
"autoload": {
"psr-4": {
"Fresh\\DoctrineEnumBundle\\": ""
}
}
}