master

laravel/framework

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

composer.json

TLDR

This composer.json file provides information about the Illuminate Cookie package. It includes details such as the package name, description, license, authors, required dependencies, and autoload configuration.

Classes

There are no classes defined in this file.

{
    "name": "illuminate/cookie",
    "description": "The Illuminate Cookie 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",
        "ext-hash": "*",
        "illuminate/collections": "^11.0",
        "illuminate/contracts": "^11.0",
        "illuminate/macroable": "^11.0",
        "illuminate/support": "^11.0",
        "symfony/http-foundation": "^7.0",
        "symfony/http-kernel": "^7.0"
    },
    "autoload": {
        "psr-4": {
            "Illuminate\\Cookie\\": ""
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "11.x-dev"
        }
    },
    "config": {
        "sort-packages": true
    },
    "minimum-stability": "dev"
}