Files
René Halberstadt f0eea523ec
PHP Composer / build (push) Successful in 32s
Inital commit after splitting from main project
2026-07-26 17:11:40 +02:00

44 lines
1.3 KiB
JSON

{
"name": "tez/utils-num",
"type": "library",
"description": "PHP number utilities: formatting, byte sizes, percentage, clamping, and rounding helpers (Num), plus arbitrary-precision decimal arithmetic via bcmath (Bc). PHP 8.3+, requires ext-bcmath.",
"license": "MIT",
"autoload": {
"psr-4": {
"Tez\\Utils\\Num\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tez\\Utils\\Tests\\Num\\": "tests/"
}
},
"repositories": [
{
"type": "git",
"url": "https://gitea.root-zone.info/tez/tez-utils-validate.git"
},
{
"type": "git",
"url": "https://github.com/tezmanian/tez-utils-validate.git"
}
],
"require": {
"php": ">=8.3",
"ext-bcmath": "*",
"tez/utils-validate": "^1.0"
},
"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"
}
}