composer.json
TLDR
This composer.json
file is part of the Illuminate Auth package in the Demo Projects project. It provides information about the package, such as its name, description, license, and dependencies.
Methods
None
Classes
None
{
"name": "illuminate/auth",
"description": "The Illuminate Auth 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/http": "^11.0",
"illuminate/macroable": "^11.0",
"illuminate/queue": "^11.0",
"illuminate/support": "^11.0"
},
"autoload": {
"psr-4": {
"Illuminate\\Auth\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "11.x-dev"
}
},
"suggest": {
"illuminate/console": "Required to use the auth:clear-resets command (^11.0).",
"illuminate/queue": "Required to fire login / logout events (^11.0).",
"illuminate/session": "Required to use the session based guard (^11.0)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}