master

laravel/framework

Last updated at: 29/12/2023 09:20

composer.json

TLDR

This composer.json file provides information about the Illuminate Cache package, including its name, description, license, dependencies, and suggested extensions.

Methods (if applicable)

N/A

Classes (if applicable)

N/A

{
    "name": "illuminate/cache",
    "description": "The Illuminate Cache package.",
    "license": "MIT",
    "homepage": "https://laravel.com",
    "support": {
        "issues": "https://github.com/laravel/framework/issues",
        "source": "https://github.com/laravel/framework"
    },
    "authors": [
        {
            "name": "Taylor Otwell",
            "email": "taylor@laravel.com"
        }
    ],
    "require": {
        "php": "^8.2",
        "illuminate/collections": "^11.0",
        "illuminate/contracts": "^11.0",
        "illuminate/macroable": "^11.0",
        "illuminate/support": "^11.0"
    },
    "provide": {
        "psr/simple-cache-implementation": "1.0|2.0|3.0"
    },
    "autoload": {
        "psr-4": {
            "Illuminate\\Cache\\": ""
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "11.x-dev"
        }
    },
    "suggest": {
        "ext-apcu": "Required to use the APC cache driver.",
        "ext-filter": "Required to use the DynamoDb cache driver.",
        "ext-memcached": "Required to use the memcache cache driver.",
        "illuminate/database": "Required to use the database cache driver (^11.0).",
        "illuminate/filesystem": "Required to use the file cache driver (^11.0).",
        "illuminate/redis": "Required to use the redis cache driver (^11.0).",
        "symfony/cache": "Required to use PSR-6 cache bridge (^7.0)."
    },
    "config": {
        "sort-packages": true
    },
    "minimum-stability": "dev"
}