{
    "name": "cidram/aggregator",
    "description": "A stand-alone class implementation of the IPv4+IPv6 IP+CIDR aggregator from CIDRAM.",
    "keywords": ["cidram","aggregator","cidr","ip","ipv4","ipv6","networking","subnets"],
    "homepage": "https://cidram.github.io/",
    "license": "GPL-2.0-or-later",
    "support": {
        "chat": "https://gitter.im/CIDRAM/Lobby",
        "issues": "https://github.com/CIDRAM/Aggregator/issues",
        "source": "https://github.com/CIDRAM/Aggregator"
    },
    "require": {
        "php": ">=5.4.0",
        "ext-pcre": "*"
    },
    "suggest": {
        "php": ">=7.2.0 (this package performs significantly better with PHP >= 7.2.0)."
    },
    "autoload": {
        "psr-4": {
            "CIDRAM\\Aggregator\\": "src/"
        },
        "files": ["src/helpers.php"]
    },
    "autoload-dev": {
        "psr-4": {
            "CIDRAM\\Aggregator\\": "tests/"
        }
    },
    "require-dev": {
        "phpunit/phpunit": "^4.8"
    },
    "scripts": {
        "test": [
            "phpunit"
        ]
    }
}
 
  |