composer.json
TLDR
This file is a composer.json file for the Illuminate Http package. It contains metadata about the package, its dependencies, and autoloading configuration.
Classes
There are no classes in this file.
Methods
There are no methods in this file.
{
"name": "illuminate/http",
"description": "The Illuminate Http 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-filter": "*",
"fruitcake/php-cors": "^1.3",
"guzzlehttp/uri-template": "^1.0",
"illuminate/collections": "^11.0",
"illuminate/macroable": "^11.0",
"illuminate/session": "^11.0",
"illuminate/support": "^11.0",
"symfony/http-foundation": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/polyfill-php83": "^1.28",
"symfony/mime": "^7.0"
},
"autoload": {
"psr-4": {
"Illuminate\\Http\\": ""
}
},
"suggest": {
"ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
"guzzlehttp/guzzle": "Required to use the HTTP Client (^7.6)."
},
"extra": {
"branch-alias": {
"dev-master": "11.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}