{
    "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": {
            "CBOR\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "CBOR\\Test\\": "tests/"
        }
    },
    "require": {
        "php": ">=8.0",
        "ext-mbstring": "*",
        "brick/math": "^0.9|^0.10|^0.11|^0.12"
    },
    "require-dev": {
        "ext-json": "*",
        "ekino/phpstan-banned-code": "^1.0",
        "infection/infection": "^0.29",
        "phpstan/extension-installer": "^1.1",
        "phpstan/phpstan": "^1.0",
        "phpstan/phpstan-beberlei-assert": "^1.0",
        "phpstan/phpstan-deprecation-rules": "^1.0",
        "phpstan/phpstan-phpunit": "^1.0",
        "phpstan/phpstan-strict-rules": "^1.0",
        "phpunit/phpunit": "^10.1|^11.0",
        "rector/rector": "^1.0",
        "roave/security-advisories": "dev-latest",
        "symfony/var-dumper": "^6.0|^7.0",
        "symplify/easy-coding-standard": "^12.0",
        "php-parallel-lint/php-parallel-lint": "^1.3",
        "qossmic/deptrac": "^2.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"
    }
}
