forked from Elao/PhpEnums
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.05 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
69
70
71
72
73
74
75
76
77
{
"name": "elao/enum",
"description": "Enumerations for PHP and frameworks integrations",
"keywords": [
"enum",
"symfony",
"doctrine"
],
"type": "library",
"homepage": "https://github.com/Elao/PhpEnums",
"license": "MIT",
"authors": [
{
"name": "Elao",
"homepage": "https://www.elao.com"
},
{
"name": "Maxime Steinhausser",
"email": "maxime.steinhausser@gmail.com",
"homepage": "https://github.com/ogizanagi"
}
],
"bin": [
"bin/elao-enum-dump-js"
],
"autoload": {
"psr-4": {
"Elao\\Enum\\": "src/"
},
"files": [
"src/Bridge/Symfony/VarDumper/Resources/register_caster.php"
]
},
"autoload-dev": {
"psr-4": {
"Elao\\Enum\\Tests\\": "tests/",
"App\\": "tests/Fixtures/Integration/Symfony/src"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=7.3"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"api-platform/core": "^2.5.1",
"doctrine/data-fixtures": "^1.2",
"doctrine/doctrine-bundle": "^1.12|^2.0",
"doctrine/orm": "^2.4",
"friendsofphp/php-cs-fixer": "^3.0",
"nelmio/alice": "^3.0",
"symfony/browser-kit": "^4.4|^5.1",
"symfony/console": "^4.4|^5.1",
"symfony/css-selector": "^4.4|^5.1",
"symfony/form": "^4.4|^5.1",
"symfony/framework-bundle": "^4.4|^5.1",
"symfony/phpunit-bridge": "^5.3",
"symfony/serializer": "^4.4|^5.1",
"symfony/translation": "^4.4|^5.1",
"symfony/twig-bundle": "^4.4|^5.1",
"symfony/validator": "^4.4|^5.1",
"symfony/yaml": "^4.4|^5.1",
"twig/twig": "^2.12|^3.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}