Search by

langleyfoxall / laravel-boilerplate

Jord-JDlangleyfoxall

Langley Foxall Laravel Boilerplate

Package info

github.com/langleyfoxall/laravel-boilerplate

Type:project

pkg:composer/langleyfoxall/laravel-boilerplate

Statistics

Installs: 27

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 16

v3.1.0 2019-07-08 14:26 UTC

This package is auto-updated.

Last update: 2026-08-29 01:56:41 UTC


README

This is our internal boilerplate for Laravel projects, it should hopefully reduce the time it takes for you to setup a project & also improve code standards across the board.

Installation

The Langley Foxall Laravel Boilerplate can be easily installed using Composer. Just run the following command and it will create a new directory for your project.

composer create-project langleyfoxall/laravel-boilerplate

The boilerplate and all its dependencies will be automatically downloaded.

Features

The table below illustrates the planned features and the currently implemented features.

Feature Implemented Desc
Log Viewer ✅ Easily viewing logs
React ✅ Frontend framework
ESLint ✅ Coding standards
Ziggy ✅ Use named routes in your js
JWT Auth ✅ JWT API authorization
Jest ✅ JS testing framework
Enzyme ✅ Utilities for testing React
Travis ✅ Continuous integration
Dusk ✅ Browser testing for Laravel (blade)
Laravel Debug Bar ✅ Help debugger

Notes

  • Be careful when using Jest & Dusk, they should not be used in tandem, use Jest & Enzyme for React rendered apps & Dusk for Blade rendered apps.
  • When using Ziggy, ensure you add @routes before you include your application's bundle.
  • JWTAuth is using the latest release candidate & not 0.5.*. Therefore make sure you use this link when referring to the docs. http://jwt-auth.readthedocs.io/en/develop/
  • Travis (.travis.yml) may need some modifications based on your setup.