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

laravel/laravel v10.3.2

The skeleton application for the Laravel framework.
Package summary
Share
4
issues
4
high severity
license
2
meta
2
4
licenses
66
MIT
5
BSD-3-Clause
2
(BSD-3-Clause OR GPL-2.0-only OR GPL-3.0-only)
1
Apache-2.0
Package created
31 May 2013
Version published
4 Jan 2024
Maintainers
1
Total deps
74
Direct deps
4
License
MIT

Issues

4

4 high severity issues

high
Recommendation: Validate that the license expression complies with your license policy
via: laravel/framework@v10.48.10
Recommendation: Validate that the license expression complies with your license policy
via: laravel/framework@v10.48.10
via: laravel/laravel@v10.3.2
via: laravel/laravel@v10.3.2
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
66 Packages, Including:
brick/math@0.12.1
carbonphp/carbon-doctrine-types@2.1.0
dflydev/dot-access-data@v3.0.2
doctrine/inflector@2.0.10
doctrine/lexer@3.0.1
dragonmantank/cron-expression@v3.3.3
egulias/email-validator@4.0.2
fruitcake/php-cors@v1.3.0
graham-campbell/result-type@v1.1.2
guzzlehttp/guzzle@7.8.1
guzzlehttp/promises@2.0.2
guzzlehttp/psr7@2.6.2
guzzlehttp/uri-template@v1.0.3
laravel/framework@v10.48.10
laravel/laravel@v10.3.2
laravel/prompts@v0.1.21
laravel/sanctum@v3.3.3
laravel/serializable-closure@v1.3.3
laravel/tinker@v2.9.0
league/flysystem@3.27.0
league/flysystem-local@3.25.1
league/mime-type-detection@1.15.0
monolog/monolog@3.6.0
nesbot/carbon@2.72.3
nunomaduro/termwind@v1.15.1
psr/clock@1.0.0
psr/container@2.0.2
psr/event-dispatcher@1.0.0
psr/http-client@1.0.3
psr/http-factory@1.0.2
psr/log@3.0.0
psr/simple-cache@3.0.0
psy/psysh@v0.12.3
ralouphie/getallheaders@3.0.3
ramsey/collection@2.0.0
ramsey/uuid@4.7.6
symfony/console@v6.4.7
symfony/css-selector@v7.0.7
symfony/deprecation-contracts@v3.5.0
symfony/error-handler@v6.4.7
symfony/event-dispatcher@v7.0.7
symfony/event-dispatcher-contracts@v3.5.0
symfony/finder@v6.4.7
symfony/http-foundation@v6.4.7
symfony/http-kernel@v6.4.7
symfony/mailer@v6.4.7
symfony/mime@v6.4.7
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-intl-grapheme@v1.29.0
symfony/polyfill-intl-idn@v1.29.0

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
5 Packages, Including:
league/commonmark@2.4.2
league/config@v1.2.0
nikic/php-parser@v5.0.2
tijsverkoyen/css-to-inline-styles@v2.2.7
vlucas/phpdotenv@v5.6.0

(BSD-3-Clause OR GPL-2.0-only OR GPL-3.0-only)

Expression
2 Packages, Including:
nette/schema@v1.3.0
nette/utils@v4.0.4

Apache License 2.0

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
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
1 Packages, Including:
phpoption/phpoption@1.9.2
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

4
All Dependencies CSV
β“˜ This is a list of laravel/laravel 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
guzzlehttp/guzzle7.8.1112.34 kBMIT
prod dev
laravel/frameworkv10.48.10-MIT
prod
2
laravel/sanctumv3.3.322.27 kBMIT
prod
laravel/tinkerv2.9.07.96 kBMIT
prod

Visualizations

Frequently Asked Questions

What does laravel/laravel do?

"Laravel/Laravel" is a robust and expressive package intended for creating web applications. Built on an elegant syntax, Laravel eases the process of web development by handling tasks such as routing, session management, caching, database management and real-time event broadcasting. Laravel's expressive and intuitive design makes it an ideal tool for building large-scale applications.

How do you use laravel/laravel?

Laravel/Laravel can be applied using the following steps:

  1. Ensure Composer software is installed on your system.
  2. Open a terminal and navigate to your project directory.
  3. Run the command composer create-project --prefer-dist laravel/laravel blog to create a fresh Laravel installation on your system. Replace "blog" with your desired project name.
  4. After installation is complete, you can run the command php artisan serve from the project directory to start the Laravel development server.

Here's an example of using Laravel's routing mechanism:

Route::get('/hello', function () {
    return 'Hello, World!';
});

And here's an example of using Laravel's Eloquent ORM for database operations:

$user = App\Models\User::find(1);

echo $user->name;

Where are the laravel/laravel docs?

The Laravel documentation, with guides, tutorials, and comprehensive explanations of Laravel features, can be found at https://laravel.com/docs. For beginners, the Laravel Bootcamp and Laracasts can also prove invaluable resources to learning Laravel. Alongside the docs, these platforms offer video tutorials and real-world examples to drive the learning process.