summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: a8124e9215d7a06738034813a9692fa96fc66c0d (plain)
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
{
    "name": "brick/math",
    "description": "Arbitrary-precision arithmetic library",
    "type": "library",
    "keywords": [
        "Brick",
        "Math",
        "Arbitrary-precision",
        "Arithmetic",
        "BigInteger",
        "BigDecimal",
        "BigRational",
        "Bignum"
    ],
    "license": "MIT",
    "require": {
        "php": "^7.4 || ^8.0",
        "ext-json": "*"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.0",
        "php-coveralls/php-coveralls": "^2.2",
        "vimeo/psalm": "4.25.0"
    },
    "autoload": {
        "psr-4": {
            "Brick\\Math\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Brick\\Math\\Tests\\": "tests/"
        }
    }
}