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

laravel/sail v1.27.3

Docker files for running a basic Laravel application.
Package summary
Share
0
issues
0
licenses
Package created
4 Dec 2020
Version published
30 Jan 2024
Maintainers
1
Total deps
0
Direct deps
0
License
MIT
Generating a report...
Hold on while we generate a fresh audit report for this package.

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.