forked from fre5h/DoctrineEnumBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.7 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "fresh/doctrine-enum-bundle",
"description": "Provides support of ENUM type for Doctrine2 in Symfony applications.",
"keywords": ["bundle", "symfony", "doctrine", "entity", "enum", "type", "DBAL", "MySQL", "SQLite", "PostgreSQL", "MSSQL"],
"homepage": "https://github.com/fre5h/DoctrineEnumBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Artem Genvald",
"email": "[email protected]",
"role": "Creator"
},
{
"name": "Community",
"homepage": "https://github.com/fre5h/DoctrineEnumBundle/graphs/contributors",
"role": "Contributors"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/fre5h/DoctrineEnumBundle/issues"
},
"require": {
"php": ">=5.4.0",
"doctrine/common": "~2.2",
"doctrine/dbal": "~2.2",
"symfony/config": "~2.6|~3.0",
"symfony/dependency-injection": "~2.6|~3.0",
"symfony/doctrine-bridge": "~2.6|~3.0",
"symfony/form": "~2.6|~3.0",
"symfony/framework-bundle": "~2.6|~3.0",
"symfony/http-kernel": "~2.6|~3.0",
"symfony/validator": "~2.6|~3.0",
"twig/twig": "~1.13"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"squizlabs/php_codesniffer": "~2.6",
"escapestudios/symfony2-coding-standard": "~2.9"
},
"autoload": {
"psr-4": {
"Fresh\\DoctrineEnumBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}