-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
54 lines (53 loc) · 1.36 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": "henzeb/enumhancer",
"description": "Enrich your enums with common functionality",
"keywords": [
"henzeb",
"enumhancer"
],
"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": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.0",
"illuminate/support": "^8.69|^9.0",
"orchestra/testbench": "^7.0"
},
"autoload": {
"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
},
"extra": {
"laravel": {
"providers": [
"Henzeb\\Enumhancer\\Laravel\\Providers\\EnumhancerServiceProvider"
]
}
}
}