Getting Started

Laravel Specific Standard Operating Procedures that keep us true to the Community Standards

The Ecosystem

At the very minimum, you need to know how to use Gitarrow-up-right and Composerarrow-up-right. Though not required, it is better that you have an account on GitHub.comarrow-up-right as it is where all the code and its dependencies are hosted.

You MUST be comfortable in using Command Line Interface (CLI)arrow-up-right, specially Unix Shells (sh, ksh, csh, tcsh, bash etc) as it is heavily used for common tasks in working with Laravel.

For local development, you’ll need to have at least Vagrantarrow-up-right and VirtualBoxarrow-up-right installed. This is used by Homesteadarrow-up-right (a special vagrant box made for running Laravel apps). Although you can use the traditional WAMP/MAMP/XAMPP stack, those are not officially supported, thus you might have hard time down the road.

Pure “Laravel-way” frontend development might be a daunting one as it got has a long chain of technologies. You can either use Laravel Bladearrow-up-right which is server-side templating or do client-side (browser), which at the very top of the chain is Mixarrow-up-right, a wrapper for Webpackarrow-up-right. Webpack has its dependencies managed through npmarrow-up-right, all of which are packages of NodeJSarrow-up-right.

CSS is managed either through Sassarrow-up-right or LESSarrow-up-right, while JavaScript can be done through Plain JavaScript, ReactJSarrow-up-right and the more common frontend framework used with Laravel: VueJSarrow-up-right.

For the backend stack, at the very least, you need a web server like Nginxarrow-up-right, a php interpreter like PHP-FPMarrow-up-right and a database like MySQLarrow-up-right. Other optional stack components are Memcachedarrow-up-right, Redisarrow-up-right and Beanstalkdarrow-up-right.

While you are not required to understand them all at once, it is advantagous that you are at least familiar with these and do some reading about what they are and where they are being used. This will save you tons of confusion when reading the documentation and references in the future.

Last updated