Popularity
8.9
Stable
Activity
7.8
-
3,851
133
1,447

Programming language: Shell
License: MIT License

Laravel Homestead alternatives and similar libraries

Based on the "Development Environment" category.
Alternatively, view Laravel Homestead alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Laravel Homestead or a related project?

Add another 'Development Environment' Library

README

Introduction

Laravel Homestead is an official, pre-packaged Vagrant box that provides you a wonderful development environment without requiring you to install PHP, a web server, and any other server software on your local machine. No more worrying about messing up your operating system! Vagrant boxes are completely disposable. If something goes wrong, you can destroy and re-create the box in minutes!

Homestead runs on any Windows, Mac, or Linux system, and includes the Nginx web server, PHP 8.0, MySQL, Postgres, Redis, Memcached, Node, and all of the other goodies you need to develop amazing Laravel applications.

Official documentation is located here.

Ubuntu LTS Settler Version Homestead Version Branch Status
20.04 11.x 12.x main Development/Unstable
20.04 11.x 12.x release Stable

Developing Homestead

To keep any in-development changes separate from other Homestead installations, create a new project and install Homestead from composer, forcing it to use a git checkout.

$ mkdir homestead && \
    cd homestead && \
    composer require --prefer-source laravel/homestead:dev-main

After it's complete, vendor/laravel/homestead will be a git checkout and can be used normally.


*Note that all licence references and agreements mentioned in the Laravel Homestead README section above are relevant to that project's source code only.