Laragear/CacheQuery

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "laragear/cache-query",
    "description": "Remember your query results using only one method. Yes, only one.",
    "type": "library",
    "license": "MIT",
    "minimum-stability": "stable",
    "prefer-stable": true,
    "authors": [
        {
            "name": "Italo Baeza C.",
            "email": "DarkGhostHunter@Gmail.com",
            "homepage": "https://patreon.com/packagesforlaravel"
        }
    ],
    "support": {
        "source": "https://github.com/laragear/cache-query",
        "issues": "https://github.com/laragear/cache-query/issues"
    },
    "require": {
        "php": "^8.0.2",
        "illuminate/cache": "9.*",
        "illuminate/config": "9.*",
        "illuminate/database": "9.*",
        "illuminate/support": "9.*",
        "illuminate/container": "9.*",
        "illuminate/contracts": "9.*"
    },
    "require-dev": {
        "orchestra/testbench": "7.*",
        "phpunit/phpunit": "^9.5"
    },
    "autoload": {
        "psr-4": {
            "Laragear\\CacheQuery\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit --coverage-clover build/logs/clover.xml",
        "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "Laragear\\CacheQuery\\CacheQueryServiceProvider"
            ]
        }
    },
    "funding": [
        {
            "type": "Patreon",
            "url": "https://patreon.com/PackagesForLaravel"
        },
        {
            "type": "Ko-Fi",
            "url": "https://ko-fi.com/DarkGhostHunter"
        },
        {
            "type": "Buy me a cofee",
            "url": "https://www.buymeacoffee.com/darkghosthunter"
        },
        {
            "type": "Paypal",
            "url": "https://paypal.me/darkghosthunter"
        }
    ]
}