diff options
author | Remi Collet <remi@remirepo.net> | 2018-11-21 07:25:25 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-11-21 07:25:25 +0100 |
commit | 122edc9ae0bfe968947801e1ff5c931bbf52c5c8 (patch) | |
tree | 469d40df1f65298b125464d9e7f7e316d7b55ef6 /composer.json | |
parent | 12219f55fe14585575c45ac0da2939e185bbec62 (diff) |
update to 1.4.0
open https://github.com/maxmind/MaxMind-DB-Reader-php/issues/79 to report test failure on 32-bit
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..dce4428 --- /dev/null +++ b/composer.json @@ -0,0 +1,34 @@ +{ + "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": "http://www.maxmind.com/" + } + ], + "require": { + "php": ">=5.4" + }, + "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" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "2.*", + "phpunit/phpunit": "4.* || 5.*", + "satooshi/php-coveralls": "1.0.*", + "squizlabs/php_codesniffer": "3.*" + }, + "autoload": { + "psr-4": { + "MaxMind\\Db\\": "src/MaxMind/Db" + } + } +} |