-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
composer.json
68 lines (68 loc) · 2.09 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"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": ">=8.1",
"doctrine/common": "^3.4",
"doctrine/dbal": "^4.0",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/orm": "^3.1",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/doctrine-bridge": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/validator": "^7.0",
"twig/twig": "^3.9"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.13",
"jetbrains/phpstorm-attributes": "^1.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^11.1",
"slam/phpstan-extensions": "^6.3",
"symfony/form": "^7.0"
},
"autoload": {
"psr-4": {
"Fresh\\DoctrineEnumBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Fresh\\DoctrineEnumBundle\\Tests\\": "Tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
}
}