Laravel Hetzner Robot

PHP MIT

Laravel SDK for the Hetzner Robot API with fluent resources, type-safe responses, failover IP management, dedicated server automation, and seamless Laravel integration.

Stars
20
Forks
0
Downloads
2,250
Open Issues
0
Files main

Repository Files

Loading file structure...
composer.json
{
    "name": "ghostcompiler/laravel-hetzner-robot",
    "description": "Production-ready Laravel SDK for the Hetzner Robot API",
    "license": "MIT",
    "authors": [
        {
            "name": "Ghost Compiler",
            "email": "info@ghostcompiler.com"
        }
    ],
    "require": {
        "php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
        "illuminate/support": "^11.0 || ^12.0 || ^13.0",
        "illuminate/contracts": "^11.0 || ^12.0 || ^13.0",
        "guzzlehttp/guzzle": "^7.0"
    },
    "require-dev": {
        "laravel/pint": "^1.13",
        "orchestra/testbench": "^9.0 || ^10.0 || ^11.0",
        "phpstan/phpstan": "^1.10",
        "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0 || ^13.0",
        "rector/rector": "^1.0",
        "vimeo/psalm": "^5.9"
    },
    "autoload": {
        "psr-4": {
            "Vendor\\HetznerRobot\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Vendor\\HetznerRobot\\Tests\\": "tests/"
        }
    },
    "extra": {
        "laravel": {
            "providers": [
                "Vendor\\HetznerRobot\\Providers\\HetznerRobotServiceProvider"
            ],
            "aliases": {
                "HetznerRobot": "Vendor\\HetznerRobot\\Facades\\HetznerRobot"
            }
        }
    },
    "config": {
        "sort-packages": true,
        "allow-plugins": {
            "composer/package-versions-deprecated": true
        },
        "audit": {
            "block-insecure": false,
            "ignore": {
                "CVE-2026-48019": "Laravel CRLF injection in default email rule affects dev dependencies and is not used by this package.",
                "GHSA-5vg9-5847-vvmq": "Laravel CRLF injection in default email rule affects dev dependencies and is not used by this package."
            }
        }
    }
}