summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: f4e739171fd2740d7f844cad6860cacc891b003f (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
36
37
38
39
40
41
42
43
{
    "name": "maxmind-db/reader",
    "description": "MaxMind DB Reader API",
    "keywords": ["database", "geoip", "geoip2", "geolocation", "maxmind"],
    "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
    "type": "library",
    "license": "Apache-2.0",
    "authors": [
        {
            "name": "Gregory J. Oschwald",
            "email": "goschwald@maxmind.com",
            "homepage": "https://www.maxmind.com/"
        }
    ],
    "require": {
        "php": ">=7.2"
    },
    "suggest": {
        "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
        "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
        "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
    },
    "conflict": {
        "ext-maxminddb": "<1.9.0,>=2.0.0"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "*",
        "phpunit/phpunit": ">=8.0.0,<10.0.0",
        "php-coveralls/php-coveralls": "^2.1",
        "phpunit/phpcov": ">=6.0.0",
        "squizlabs/php_codesniffer": "3.*"
    },
    "autoload": {
        "psr-4": {
            "MaxMind\\Db\\": "src/MaxMind/Db"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "MaxMind\\Db\\Test\\Reader\\": "tests/MaxMind/Db/Test/Reader"
        }
    }
}