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

laravel/sail v1.21.5

Docker files for running a basic Laravel application.
Package summary
Share
0
issues
1
license
36
MIT
Package created
4 Dec 2020
Version published
24 Apr 2023
Maintainers
1
Total deps
36
Direct deps
4
License
MIT

Issues

0
This package has no issues

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
36 Packages, Including:
carbonphp/carbon-doctrine-types@3.2.0
doctrine/inflector@2.0.10
illuminate/bus@v10.48.11
illuminate/collections@v10.48.11
illuminate/conditionable@v10.48.11
illuminate/console@v10.48.11
illuminate/container@v10.48.11
illuminate/contracts@v10.48.11
illuminate/events@v10.48.11
illuminate/filesystem@v10.48.11
illuminate/macroable@v10.48.11
illuminate/pipeline@v10.48.11
illuminate/support@v10.48.11
illuminate/view@v10.48.11
laravel/prompts@v0.1.22
laravel/sail@v1.21.5
nesbot/carbon@2.72.3
nunomaduro/termwind@v1.15.1
psr/clock@1.0.0
psr/container@2.0.2
psr/simple-cache@3.0.0
symfony/console@v6.4.7
symfony/deprecation-contracts@v3.5.0
symfony/finder@v6.4.7
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-intl-grapheme@v1.29.0
symfony/polyfill-intl-normalizer@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php80@v1.29.0
symfony/process@v6.4.7
symfony/service-contracts@v3.5.0
symfony/string@v7.0.7
symfony/translation@v6.4.7
symfony/translation-contracts@v3.5.0
symfony/yaml@v6.4.7
voku/portable-ascii@2.0.1
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/sail 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
illuminate/consolev10.48.11-MIT
prod
illuminate/contractsv10.48.11-MIT
prod
illuminate/supportv10.48.11-MIT
prod
symfony/yamlv6.4.7-MIT
prod dev

Visualizations

Frequently Asked Questions

What does laravel/sail do?

Laravel Sail is a powerful tool for providing a Docker powered local development environment specifically designed for Laravel. The local setup is compatible across multiple operating systems including macOS, Windows (WSL2), and Linux. What sets Laravel Sail apart is its ease of use -- there's no need to install any other software or libraries on your computer apart from Docker to start utilizing Sail. This simplicity extends to Sail's Command-Line Interface (CLI) which is designed to be user-friendly even for those who have little to no past experience with Docker.

How do you use laravel/sail?

To effectively use Laravel Sail, first you need Docker installed on your computer. Once Docker is ready and running, you can use composer to create a new Laravel project and set up Laravel Sail:

composer require laravel/sail --dev

And then use the Sail artisan command to start Laravel Sail:

./vendor/bin/sail up

This command builds and starts the Docker containers defined in your docker-compose.yml file. Now, your Laravel Sail environment is up and running. You can execute any artisan command as if it's local via Sail's CLI:

./vendor/bin/sail artisan migrate

This will perform migration in your Sail environment without causing any change to your local machine settings.

Where are the laravel/sail docs?

The comprehensive official documentation for Laravel Sail is available on the Laravel website at https://laravel.com/docs/sail. In these documents, you'll find detailed guidance on installing and using Sail, as well as information on its features, configuration options, and more. This is an excellent ressource for becoming proficient in using Laravel Sail in your development workflow.