forked from fre5h/DoctrineEnumBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.54 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
{
"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 Henvald",
"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": ">=7.1.3",
"doctrine/common": "^2.8",
"doctrine/dbal": "^2.6"
},
"require-dev": {
"phpstan/phpstan": "^0.9",
"phpunit/phpunit": "^7.0",
"escapestudios/symfony2-coding-standard": "^3.1",
"squizlabs/php_codesniffer": "^3.2",
"symfony/form": "^4.0"
},
"autoload": {
"psr-4": {
"Fresh\\DoctrineEnumBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Fresh\\DoctrineEnumBundle\\Tests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "6.x-dev"
}
}
}