-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
114 lines (114 loc) · 2.66 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "henzeb/enumhancer",
"description": "Your framework-agnostic Swiss Army knife for PHP 8.1+ native enums",
"keywords": [
"henzeb",
"enumhancer",
"enums",
"enum",
"dropdown",
"select",
"list",
"enumerators",
"enumerator",
"mappers",
"labels",
"reporting",
"report",
"logging",
"stringable",
"string",
"comparison",
"blade",
"native",
"backed",
"basic",
"unit",
"unitEnum",
"backedEnum",
"from",
"tryFrom",
"extract",
"extractor",
"properties",
"subset",
"value",
"casting",
"cast",
"eloquent",
"laravel",
"spatie",
"default",
"php 8.1",
"8.1",
"php 8.2",
"8.2",
"state",
"machine",
"transition",
"validation",
"rules",
"bitmask",
"bitmasks",
"macros",
"macroable",
"binding",
"ide-helper",
"implicit"
],
"homepage": "https://github.com/henzeb/enumhancer",
"license": "AGPL-3.0-only",
"type": "library",
"authors": [
{
"name": "Henze Berkheij",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"composer/composer": "^2.5",
"henzeb/enumhancer-ide-helper": "main-dev",
"infection/infection": "^0.27.0",
"mockery/mockery": "^1.5",
"nunomaduro/larastan": "^2.3",
"orchestra/testbench": "^v7.18|^8.0|^9",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5.27|^10"
},
"autoload": {
"files": [
"src/Functions/Functions.php"
],
"psr-4": {
"Henzeb\\Enumhancer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Henzeb\\Enumhancer\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage-txt": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html coverage",
"test-dox": "vendor/bin/phpunit --testdox"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Henzeb\\Enumhancer\\Laravel\\Providers\\EnumhancerServiceProvider"
]
}
}
}