-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 911 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 911 Bytes
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
{
"name": "prestashop/decimal",
"description": "Object-oriented wrapper/shim for BC Math PHP extension. Allows for arbitrary-precision math operations.",
"type": "library",
"keywords": [
"decimal",
"math",
"precision",
"bcmath",
"prestashop"
],
"homepage": "https://github.com/prestashop/decimal",
"license": "MIT",
"authors": [
{
"name": "PrestaShop SA",
"email": "contact@prestashop.com"
}
],
"require": {
"php" : ">=7.2"
},
"require-dev": {
"phpunit/phpunit" : "8.*",
"prestashop/php-dev-tools": "^4.1",
"phpstan/phpstan": "^0.12.99"
},
"autoload": {
"psr-4": {
"PrestaShop\\Decimal\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PrestaShop\\Decimal\\Test\\": "tests"
}
}
}