49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "illuminate/queue",
|
|
"description": "The Illuminate Queue 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": ">=7.0",
|
|
"illuminate/console": "5.5.*",
|
|
"illuminate/container": "5.5.*",
|
|
"illuminate/contracts": "5.5.*",
|
|
"illuminate/database": "5.5.*",
|
|
"illuminate/filesystem": "5.5.*",
|
|
"illuminate/support": "5.5.*",
|
|
"symfony/debug": "~3.3",
|
|
"symfony/process": "~3.3"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Illuminate\\Queue\\": ""
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "5.5-dev"
|
|
}
|
|
},
|
|
"suggest": {
|
|
"ext-pcntl": "Required to use all features of the queue worker.",
|
|
"ext-posix": "Required to use all features of the queue worker.",
|
|
"aws/aws-sdk-php": "Required to use the SQS queue driver (~3.0).",
|
|
"illuminate/redis": "Required to use the Redis queue driver (5.5.*).",
|
|
"pda/pheanstalk": "Required to use the Beanstalk queue driver (~3.0)."
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"minimum-stability": "dev"
|
|
}
|