Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 2, 2024 via composer

illuminate/queue v6.20.44

The Illuminate Queue package.
Package summary
Share
1
issue
1
high severity
meta
1
1
license
27
MIT
Package created
7 Dec 2012
Version published
8 Sep 2021
Maintainers
1
Total deps
27
Direct deps
10
License
MIT

Issues

1

1 high severity issue

high
via: illuminate/pipeline@v6.20.44 & others
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
27 Packages, Including:
carbonphp/carbon-doctrine-types@3.2.0
doctrine/inflector@2.0.10
illuminate/console@v6.20.44
illuminate/container@v6.20.44
illuminate/contracts@v6.20.44
illuminate/database@v6.20.44
illuminate/filesystem@v6.20.44
illuminate/pipeline@v6.20.44
illuminate/queue@v6.20.44
illuminate/support@v6.20.44
nesbot/carbon@2.72.3
opis/closure@3.6.3
psr/clock@1.0.0
psr/container@1.1.2
psr/log@2.0.0
psr/simple-cache@1.0.1
symfony/console@v4.4.49
symfony/debug@v4.4.44
symfony/deprecation-contracts@v2.5.3
symfony/finder@v4.4.44
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php73@v1.29.0
symfony/polyfill-php80@v1.29.0
symfony/process@v4.4.44
symfony/service-contracts@v2.5.3
symfony/translation@v5.3.14
symfony/translation-contracts@v2.5.3
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

10
All Dependencies CSV
β“˜ This is a list of illuminate/queue 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
illuminate/consolev6.20.44-MIT
prod
illuminate/containerv6.20.44-MIT
prod
illuminate/contractsv6.20.44-MIT
prod
illuminate/databasev6.20.44-MIT
prod
illuminate/filesystemv6.20.44-MIT
prod
illuminate/pipelinev6.20.44-MIT
prod
1
illuminate/supportv6.20.44-MIT
prod
opis/closure3.6.320.43 kBMIT
prod
symfony/debugv4.4.4439.55 kBMIT
prod
1
symfony/processv4.4.44-MIT
prod dev

Visualizations

Frequently Asked Questions

What does illuminate/queue do?

Illuminate/Queue is a component of Laravel that provides a unified API for different queue services. It allows you to defer time-consuming tasks, such as sending emails, to a later time. This can significantly speed up web requests to your application, since these tasks will be handled in the background and won't block the immediate processing of your application.

How do you use illuminate/queue?

To use the Illuminate/Queue package, you must first create a new Queue Capsule manager instance. This configuration is intended to make the library usage outside of Laravel as simple as possible. Below is a simple usage example in PHP:

use Illuminate\Queue\Capsule\Manager as Queue;

$queue = new Queue;

$queue->addConnection([
    'driver' => 'beanstalkd',
    'host' => 'localhost',
    'queue' => 'default',
]);

$queue->setAsGlobal(); // This makes the Capsule instance available globally via static methods. This is optional.

Once the Capsule instance has been registered, you can use it like this:

$queue->push('SendEmail', ['message' => $message]); // instance usage

Queue::push('SendEmail', ['message' => $message]); // global static method usage

Where are the illuminate/queue docs?

The Illuminate/Queue documentation can be found within the Laravel framework documentation. For comprehensive details about Illuminate/Queue and how to use it, refer to Laravel's official documentation, which is available at https://laravel.com/docs.