-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 868 Bytes
/
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
{
"name": "phrity/util-numerics",
"type": "library",
"description": "Utility library for numerics. Float versions of ceil(), floor() and rand() with precision. Open minded numeric parser and formatter.",
"homepage": "https://phrity.sirn.se/util-numerics",
"keywords": ["numbers", "numerics", "float", "ceil", "floor", "precision", "parse", "format"],
"license": "MIT",
"authors": [
{
"name": "Sören Jensen",
"email": "sirn@sirn.se",
"homepage": "https://phrity.sirn.se"
}
],
"autoload": {
"psr-4": {
"Phrity\\Util\\": "src/"
}
},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0 | ^10.0 | ^11.0",
"php-coveralls/php-coveralls": "^2.4",
"squizlabs/php_codesniffer": "^3.5"
}
}