{
    "name": "spomky-labs\/cbor-php",
    "type": "library",
    "license": "MIT",
    "keywords": [
        "CBOR",
        "Concise Binary Object Representation",
        "RFC7049"
    ],
    "description": "CBOR Encoder\/Decoder for PHP",
    "authors": [
        {
            "name": "Florent Morselli",
            "homepage": "https:\/\/github.com\/Spomky"
        },
        {
            "name": "All contributors",
            "homepage": "https:\/\/github.com\/Spomky-Labs\/cbor-php\/contributors"
        }
    ],
    "autoload": {
        "psr-4": {
            "GuardDog\\Vendor\\CBOR\\": "src\/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "GuardDog\\Vendor\\CBOR\\Test\\": "tests\/"
        }
    },
    "require": {
        "php": ">=8.0",
        "ext-mbstring": "*",
        "brick\/math": "^0.9|^0.10|^0.11|^0.12|^0.13|^0.14"
    },
    "require-dev": {
        "ext-json": "*",
        "roave\/security-advisories": "dev-latest",
        "symfony\/error-handler": "^6.4|^7.1|^8.0",
        "symfony\/var-dumper": "^6.4|^7.1|^8.0"
    },
    "config": {
        "sort-packages": true,
        "allow-plugins": {
            "phpstan\/extension-installer": true,
            "infection\/extension-installer": true
        }
    },
    "suggest": {
        "ext-gmp": "GMP or BCMath extensions will drastically improve the library performance",
        "ext-bcmath": "GMP or BCMath extensions will drastically improve the library performance. BCMath extension needed to handle the Big Float and Decimal Fraction Tags"
    }
}