master

laravel/framework

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

composer.json

TLDR

This file is a Composer configuration file for the Illuminate Bus package. It specifies the package dependencies, autoload settings, and other configuration options.

Classes

No classes found in this file.

{
    "name": "illuminate/bus",
    "description": "The Illuminate Bus 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/pipeline": "^11.0",
        "illuminate/support": "^11.0"
    },
    "autoload": {
        "psr-4": {
            "Illuminate\\Bus\\": ""
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "11.x-dev"
        }
    },
    "suggest": {
        "illuminate/queue": "Required to use closures when chaining jobs (^7.0)."
    },
    "config": {
        "sort-packages": true
    },
    "minimum-stability": "dev"
}