-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.48 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
{
"name": "dvlpr1996/php-enum-helper-trait",
"description": "Simplify enum handling in PHP with this versatile trait. Enhance code clarity and streamline workflows with utility methods for enum management.",
"keywords": [
"php",
"enum",
"trait",
"helper",
"utility",
"enums",
"php-enum",
"enum-trait",
"enum-helper",
"php-trait",
"php-utility",
"php-enum-helper",
"php-enum-utility"
],
"homepage": "https://github.com/dvlpr1996/php-enum-helper-trait",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.1"
},
"minimum-stability": "stable",
"authors": [
{
"name": "nima jahan bakhshian",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/dvlpr1996/php-enum-helper-trait/issues",
"source": "https://github.com/dvlpr1996/php-enum-helper-trait"
},
"require-dev": {
"symfony/var-dumper": "^6.4",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"dvlpr1996\\PhpEnumHelperTrait\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"dvlpr1996\\PhpEnumHelperTrait\\Tests\\": "Tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
}
}