Skip to content

Instantly share code, notes, and snippets.

View mubbi's full-sized avatar

Mubbasher Ahmed Qureshi mubbi

View GitHub Profile
@mubbi
mubbi / laravel-developers-guide.md
Last active December 22, 2025 06:06
Developers Guide for Laravel

Developer Standards Guide

Tech Stack: PHP 8.2+, Laravel 10+, MySQL 8+

This document defines mandatory standards and best practices for building scalable, maintainable, secure, and high‑performance applications using PHP, Laravel, and MySQL. All developers must follow these guidelines consistently.


1. General Engineering Principles

@mubbi
mubbi / nginx.conf
Created August 19, 2018 16:28 — forked from lkmadushan/nginx.conf
NGINX configuration for multi-tenant PHP application
map $http_accept $api_version {
default 0;
"application/vnd.example.v1+json" 1;
}
server {
listen 80;
listen [::]:80;