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 6, 2024 via composer

laravel/framework 5.2.41

The Laravel Framework.
Package summary
Share
33
issues
33
high severity
vulnerability
24
meta
9
2
licenses
28
MIT
2
BSD-3-Clause
Package created
10 Jan 2013
Version published
20 Jul 2016
Maintainers
1
Total deps
30
Direct deps
21
License
MIT

Issues

33

33 high severity issues

high
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: laravel/framework@5.2.41
via: paragonie/random_compat@v1.4.3
via: swiftmailer/swiftmailer@v5.4.12
via: symfony/http-foundation@v3.0.9 & others
via: symfony/http-foundation@v3.0.9 & others
via: symfony/http-foundation@v3.0.9 & others
via: symfony/http-foundation@v3.0.9 & others
via: symfony/http-kernel@v3.0.9
via: symfony/http-kernel@v3.0.9
via: psy/psysh@v0.7.2
via: jeremeamia/superclosure@2.4.0
via: nesbot/carbon@1.39.1
via: nesbot/carbon@1.39.1
via: nesbot/carbon@1.39.1
via: nesbot/carbon@1.39.1
via: mtdowling/cron-expression@v1.2.3
via: swiftmailer/swiftmailer@v5.4.12
via: symfony/debug@v3.0.9 & 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
28 Packages, Including:
classpreloader/classpreloader@3.2.1
doctrine/inflector@1.4.4
jakub-onderka/php-console-highlighter@v0.3.2
jeremeamia/superclosure@2.4.0
kylekatarnls/update-helper@1.2.1
laravel/framework@5.2.41
league/flysystem@1.1.10
league/mime-type-detection@1.15.0
monolog/monolog@1.27.1
mtdowling/cron-expression@v1.2.3
nesbot/carbon@1.39.1
paragonie/random_compat@v1.4.3
psr/log@1.1.4
psy/psysh@v0.7.2
swiftmailer/swiftmailer@v5.4.12
symfony/console@v3.0.9
symfony/debug@v3.0.9
symfony/event-dispatcher@v3.4.47
symfony/finder@v3.0.9
symfony/http-foundation@v3.0.9
symfony/http-kernel@v3.0.9
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php56@v1.20.0
symfony/process@v3.0.9
symfony/routing@v3.0.9
symfony/translation@v3.0.9
symfony/var-dumper@v3.0.9

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
nikic/php-parser@v2.1.1
vlucas/phpdotenv@v2.6.9
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

21
All Dependencies CSV
β“˜ This is a list of laravel/framework 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
classpreloader/classpreloader3.2.115.1 kBMIT
prod
doctrine/inflector1.4.4-MIT
prod
jeremeamia/superclosure2.4.016.63 kBMIT
prod
1
league/flysystem1.1.10-MIT
prod
monolog/monolog1.27.1-MIT
prod
mtdowling/cron-expressionv1.2.325.68 kBMIT
prod
1
nesbot/carbon1.39.1-MIT
prod
4
paragonie/random_compatv1.4.338.58 kBMIT
prod
1
psy/psyshv0.7.2203.75 kBMIT
prod
1
swiftmailer/swiftmailerv5.4.12-MIT
prod dev
2
symfony/consolev3.0.9-MIT
prod dev
symfony/debugv3.0.9-MIT
prod dev
1
symfony/finderv3.0.9-MIT
prod dev
symfony/http-foundationv3.0.9-MIT
prod dev
4
symfony/http-kernelv3.0.9-MIT
prod dev
7
symfony/polyfill-php56v1.20.01.99 kBMIT
prod
symfony/processv3.0.9-MIT
prod dev
symfony/routingv3.0.9-MIT
prod dev
symfony/translationv3.0.9-MIT
prod dev
symfony/var-dumperv3.0.9-MIT
prod dev
vlucas/phpdotenvv2.6.9-BSD-3-Clause
prod

Visualizations

Frequently Asked Questions

What does laravel/framework do?

The Laravel Framework is an open-source PHP web framework designed to expedite and simplify the process of web development with its expressive and elegant syntax. It seeks to make development more pleasurable and creative by easing routine tasks used in most web projects. Features include a simple, fast routing engine, a powerful dependency injection container, multiple back-ends for session and cache storage, database agnostic schema migrations, robust background job processing, and real-time event broadcasting. Laravel is both accessible and capable, providing all the tools needed to create robust applications of any scale.

How do you use laravel/framework?

To get started with Laravel, you'll need to install it first. If you already have Composer installed, it's as simple as running the command:

composer require laravel/framework

This command installs Laravel's core framework, after which you can begin building your Laravel application. Here's a simple example of how you might define a route that redirects users to a welcome view page in Laravel:

Route::get('/', function () {
    return view('welcome');
});

And here's how you might create a controller that fetches user data from your database and passes it to a view:

namespace App\Http\Controllers;

use App\Models\User;
use Illuminate\Http\Request;

class UserController extends Controller
{
    public function index()
    {
        $users = User::all();

        return view('user.index', ['users' => $users]);
    }
}

In the example above, we are creating a new instance of UserController class, declaring an index() method, fetching all the users from User model, and passing this data to a view named 'user.index'.

Where are the laravel/framework docs?

The full documentation for the Laravel Framework is hosted on Laravel's official website, and can be found at the following URL: https://laravel.com/docs. The documentation is comprehensive and well-maintained, making it easy for both beginners and advanced users to learn Laravel's capabilities. For those who prefer more interactive learning, Laravel also offers Laravel Bootcamp and Laracasts, a library with over 1100 video tutorials covering topics related to Laravel, modern PHP, unit testing, JavaScript, and more.