{
    "name": "iazaran/smart-cache",
    "description": "Smart Cache is a caching optimization package designed to enhance the way your Laravel application handles data caching. It intelligently manages large data sets by compressing, chunking, or applying other optimization strategies to keep your application performant and efficient.",
    "keywords": [
        "smart-cache",
        "smart cache laravel",
        "laravel package",
        "laravel caching",
        "cache optimization",
        "data compression",
        "cache chunking",
        "laravel performance",
        "redis cache",
        "file cache",
        "cache management",
        "laravel cache driver",
        "cache serialization",
        "cache strategies",
        "php caching",
        "laravel optimization"
    ],
    "homepage": "https://github.com/iazaran/smart-cache",
    "type": "library",
    "license": "MIT",
    "support": {
        "issues": "https://github.com/iazaran/smart-cache/issues",
        "source": "https://github.com/iazaran/smart-cache"
    },
    "authors": [
        {
            "name": "Ismael Azaran",
            "email": "eazaran@gmail.com"
        }
    ],
    "require": {
        "php": "^8.1",
        "illuminate/support": "^8.0||^9.0||^10.0||^11.0||^12.0",
        "illuminate/cache": "^8.0||^9.0||^10.0||^11.0||^12.0",
        "illuminate/console": "^8.0||^9.0||^10.0||^11.0||^12.0",
        "illuminate/contracts": "^8.0||^9.0||^10.0||^11.0||^12.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.0|^10.0|^11.0",
        "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0||^10.0",
        "mockery/mockery": "^1.5",
        "symfony/var-dumper": "^5.4|^6.0|^7.0"
    },
    "autoload": {
        "psr-4": {
            "SmartCache\\": "src/"
        },
        "files": [
            "src/helpers.php"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "SmartCache\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit --testdox",
        "test-coverage": "vendor/bin/phpunit --coverage-html coverage --testdox"
    },
    "extra": {
        "laravel": {
            "providers": [
                "SmartCache\\Providers\\SmartCacheServiceProvider"
            ],
            "aliases": {
                "SmartCache": "SmartCache\\Facades\\SmartCache"
            }
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}
