-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
56 lines (56 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
56
{
"name": "yokai/enum-bundle",
"description": "Simple enumeration system with Symfony integration",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Yann Eugoné",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"symfony/framework-bundle": "^7.0"
},
"require-dev": {
"doctrine/annotations": "^1.14",
"myclabs/php-enum": "^1.8",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.6",
"symfony/form": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/translation": "^7.0",
"symfony/twig-bundle": "^7.0",
"symfony/validator": "^7.0",
"symfony/yaml": "^7.0",
"symplify/easy-coding-standard": "^12.3",
"twig/twig": "^2.0|^3.0"
},
"suggest": {
"myclabs/php-enum": "Integrate with enum object",
"symfony/framework-bundle": "Integrate with Symfony Framework",
"symfony/form": "Add enum form type",
"symfony/validator": "Add enum validation",
"twig/twig": "Add enum util functions"
},
"autoload": {
"psr-4": { "Yokai\\EnumBundle\\": "src" }
},
"autoload-dev": {
"psr-4": {
"Yokai\\EnumBundle\\Tests\\Unit\\": "tests/Unit",
"Yokai\\EnumBundle\\Tests\\Integration\\App\\": "tests/Integration/src",
"Yokai\\EnumBundle\\Tests\\Integration\\": "tests/Integration/tests"
}
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-5.x": "5.x-dev",
"dev-4.x": "4.x-dev",
"dev-3.x": "3.x-dev",
"dev-2.x": "2.x-dev"
}
}
}