-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
42 lines (42 loc) · 1.17 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
{
"name": "arzdigitallabs/reduce-precision",
"description": "A PHP package for reducing precision of numbers.",
"version": "1.0.1",
"type": "library",
"authors": [
{
"name": "amirhosseinfaghan",
"email": "[email protected]",
"homepage": "https://github.com/amirhosseinfaghan"
}
],
"require": {
"php": ">=7.4"
},
"autoload": {
"psr-4": {
"ReducePrecision\\": "php/src/"
}
},
"require-dev": {
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer": "^3.6",
"friendsofphp/php-cs-fixer": "^3.0"
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-text",
"lint": "vendor/bin/phpcs --standard=PSR12 src",
"fix": "vendor/bin/php-cs-fixer fix"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/amirhosseinfaghan/reduce-precision.git"
}
],
"license": "MIT",
"homepage": "https://github.com/amirhosseinfaghan/reduce-precision",
"support": {
"issues": "https://github.com/amirhosseinfaghan/reduce-precision/issues"
}
}