composer.json
TLDR
This file is a composer manifest file for the Illuminate Session package. It defines the package's name, description, license, dependencies, autoload settings, and other configuration options.
{
"name": "illuminate/session",
"description": "The Illuminate Session 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-ctype": "*",
"ext-session": "*",
"illuminate/collections": "^11.0",
"illuminate/contracts": "^11.0",
"illuminate/filesystem": "^11.0",
"illuminate/support": "^11.0",
"symfony/finder": "^7.0",
"symfony/http-foundation": "^7.0"
},
"autoload": {
"psr-4": {
"Illuminate\\Session\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "11.x-dev"
}
},
"suggest": {
"illuminate/console": "Required to use the session:table command (^11.0)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}