{
    "name": "claude-php/claude-php-sdk",
    "version": "0.5.3",
    "description": "A universal, framework-agnostic PHP SDK for the Anthropic Claude API with PSR compliance",
    "license": "MIT",
    "type": "library",
    "keywords": [
        "anthropic",
        "claude",
        "api",
        "sdk",
        "php",
        "psr-18",
        "psr-11",
        "async",
        "streaming"
    ],
    "support": {
        "issues": "https://github.com/claude-php/Claude-PHP-SDK/issues",
        "source": "https://github.com/claude-php/Claude-PHP-SDK"
    },
    "authors": [
        {
            "name": "Dale Hurley",
            "email": "dale.hurley@createmy.com.au"
        }
    ],
    "require": {
        "php": "^8.1",
        "psr/http-client": "^1.0",
        "psr/http-message": "^1.0 || ^2.0",
        "psr/http-factory": "^1.1",
        "psr/container": "^1.1 || ^2.0",
        "amphp/amp": "^3.1",
        "guzzlehttp/guzzle": "^7.10",
        "nyholm/psr7": "^1.8"
    },
    "require-dev": {
        "phpunit/phpunit": "^11.0",
        "phpstan/phpstan": "^1.10",
        "squizlabs/php_codesniffer": "^3.7",
        "friendsofphp/php-cs-fixer": "^3.40",
        "mockery/mockery": "^1.6"
    },
    "suggest": {
        "amphp/http-client": "For async HTTP client support"
    },
    "autoload": {
        "psr-4": {
            "ClaudePhp\\": "src/"
        },
        "files": [
            "src/Lib/Tools/helpers.php"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "ClaudePhp\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "test": "phpunit",
        "lint": "phpcs --standard=PSR12 src/ tests/",
        "format": "php-cs-fixer fix src/ tests/",
        "stan": "phpstan analyse src tests",
        "dev:bootstrap": "./scripts/bootstrap",
        "dev:test": "./scripts/test",
        "dev:lint": "./scripts/lint",
        "dev:format": "./scripts/format",
        "dev:check-breaking": "./scripts/detect-breaking-changes"
    },
    "minimum-stability": "stable",
    "prefer-stable": true
}
