32 lines
922 B
JSON
32 lines
922 B
JSON
{
|
|
"name": "tez/utils-enum",
|
|
"type": "library",
|
|
"description": " A collection of PHP traits that supercharge native enums with comparison, bit-flag, stepping, collection, and translation helpers — zero dependencies, PHP 8.3+.",
|
|
"license": "MIT",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Tez\\Utils\\Enum\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tez\\Utils\\Tests\\Enum\\": "tests/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=8.3"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^11.0",
|
|
"jetbrains/phpstorm-attributes": "^1.0",
|
|
"phpstan/phpstan": "^2.0",
|
|
"friendsofphp/php-cs-fixer": "^3.0"
|
|
},
|
|
"scripts": {
|
|
"cs-fix": "php-cs-fixer fix",
|
|
"cs-check": "php-cs-fixer fix --dry-run --diff",
|
|
"phpstan": "phpstan analyse",
|
|
"test": "phpunit --testsuite Unit --colors=always"
|
|
}
|
|
}
|