{
    "name": "web3-php/web3",
    "description": "Web3 PHP is a supercharged PHP API client that allows you to interact with a generic Ethereum RPC.",
    "keywords": ["php", "web3", "ethereum", "json-rpc", "api", "client"],
    "license": "MIT",
    "authors": [
        {
            "name": "Nuno Maduro",
            "email": "enunomaduro@gmail.com"
        }
    ],
    "require": {
        "php": "^8.0",
        "ext-bcmath": "*",
        "guzzlehttp/guzzle": "^7.4.1",
        "phpseclib/phpseclib": "^3.0.13"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^3.6.0",
        "mockery/mockery": "^1.5.0",
        "pestphp/pest": "^2.0.0",
        "phpstan/phpstan": "^1.4.6",
        "symfony/var-dumper": "^5.4.3"
    },
    "autoload": {
        "psr-4": {
            "Web3\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "sort-packages": true,
        "preferred-install": "dist",
        "allow-plugins": {
            "pestphp/pest-plugin": true
        }
    },
    "scripts": {
        "lint": "PHP_CS_FIXER_IGNORE_ENV=true php-cs-fixer fix -v",
        "test:lint": "PHP_CS_FIXER_IGNORE_ENV=true php-cs-fixer fix -v --dry-run",
        "test:types": "phpstan analyse --ansi",
        "test:unit": "pest --colors=always",
        "test": [
            "@test:lint",
            "@test:types",
            "@test:unit"
        ]
    }
}
