master

laravel/framework

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

composer.json

TLDR

This file is a composer.json file for the Illuminate/Log package in the Demo Projects project. It provides metadata about the package including its name, description, license, homepage, authors, and dependencies.

Classes

No classes are defined in this file.

Methods

No methods are defined in this file.

{
    "name": "illuminate/log",
    "description": "The Illuminate Log 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/contracts": "^11.0",
        "illuminate/support": "^11.0",
        "monolog/monolog": "^3.0"
    },
    "autoload": {
        "psr-4": {
            "Illuminate\\Log\\": ""
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "11.x-dev"
        }
    },
    "config": {
        "sort-packages": true
    },
    "minimum-stability": "dev"
}