master

laravel/framework

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

composer.json

TLDR

This file is a composer.json file for the Illuminate Console package, which is part of the Laravel framework. It provides information about the package, its dependencies, autoloading, and extra features.

Classes

This file does not contain any classes.

{
    "name": "illuminate/console",
    "description": "The Illuminate Console 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-mbstring": "*",
        "illuminate/collections": "^11.0",
        "illuminate/contracts": "^11.0",
        "illuminate/macroable": "^11.0",
        "illuminate/support": "^11.0",
        "illuminate/view": "^11.0",
        "laravel/prompts": "^0.1.12",
        "nunomaduro/termwind": "^2.0",
        "symfony/console": "^7.0",
        "symfony/polyfill-php83": "^1.28",
        "symfony/process": "^7.0"
    },
    "autoload": {
        "psr-4": {
            "Illuminate\\Console\\": ""
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "11.x-dev"
        }
    },
    "suggest": {
        "ext-pcntl": "Required to use signal trapping.",
        "dragonmantank/cron-expression": "Required to use scheduler (^3.3.2).",
        "guzzlehttp/guzzle": "Required to use the ping methods on schedules (^7.6).",
        "illuminate/bus": "Required to use the scheduled job dispatcher (^11.0).",
        "illuminate/container": "Required to use the scheduler (^11.0).",
        "illuminate/filesystem": "Required to use the generator command (^11.0).",
        "illuminate/queue": "Required to use closures for scheduled jobs (^11.0)."
    },
    "config": {
        "sort-packages": true
    },
    "minimum-stability": "dev"
}