Laravel Cloudflare

PHP MIT

Complete Laravel Cloudflare API SDK for managing DNS records, zones, cache, SSL, firewall rules, workers, analytics, and Cloudflare services with a fluent Laravel-first developer experience.

Stars
2
Forks
0
Downloads
N/A
Open Issues
0
Files main

Repository Files

Loading file structure...
composer.json
{
    "name": "ghostcompiler/laravel-cloudflare",
    "description": "Production-ready Laravel SDK for the Cloudflare API v4",
    "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\\Cloudflare\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Vendor\\Cloudflare\\Tests\\": "tests/"
        }
    },
    "extra": {
        "laravel": {
            "providers": [
                "Vendor\\Cloudflare\\Providers\\CloudflareServiceProvider"
            ],
            "aliases": {
                "Cloudflare": "Vendor\\Cloudflare\\Facades\\Cloudflare"
            }
        }
    },
    "config": {
        "sort-packages": true,
        "allow-plugins": {
            "composer/package-versions-deprecated": true
        },
        "audit": {
            "ignore": {
                "PKSA-mdq4-51ck-6kdq": "Laravel CRLF injection is in laravel/framework which is only a dev dependency (required by orchestra/testbench) and not required by the package in production.",
                "GHSA-5vg9-5847-vvmq": "Laravel CRLF injection is in laravel/framework which is only a dev dependency (required by orchestra/testbench) and not required by the package in production."
            }
        }
    }
}