Skip to content

Instantly share code, notes, and snippets.

View fcomarcet1's full-sized avatar
馃

Francisco Marcet Prieto fcomarcet1

馃
View GitHub Profile
@edgarjaviertec
edgarjaviertec / JWT_en_Laravel_7.md
Last active July 15, 2022 14:03
Agregar autenticaci贸n con JWT en Laravel 7 usando la librer铆a 'tymon/jwt-auth'

Autenticaci贸n con JWT en Laravel 7

Paso 1

Instalar laravel

laravel new mi_proyecto

Paso 2

Instalar la 煤ltima versi贸n de la librer铆a 'jwt-auth'

@LucasMallmann
LucasMallmann / EslintNodeJS.md
Created September 30, 2019 22:59
Eslint and Prettier configuration for NodeJS and Express projects

Eslint and prettier config for nodejs and express projects

Eslint and Libs

You need to install eslint and some other config libs.

yarn add eslint prettier eslint-config-prettier eslint-plugin-prettier -D

yarn eslint --init

.eslintrc.js

@avataru
avataru / EloquentCheatSheet.md
Last active June 3, 2025 11:59
Eloquent relationships cheat sheet
@aaossa
aaossa / README.md
Created October 1, 2017 19:28
C贸mo trabajar con git branches

Workflow con git

Para este proyecto seguiremos la metodolog铆a de tener una branch principal master (equivalente a release en otros proyectos), una branch dev (o development) para comprobar que todo funcione antes de enviar los cambios a master y m煤ltiples "feature branches" para que cada colaborador pueda enacrgarse de una tarea definida, trabajarla y probarla a gusto antes de reunir los cambios en dev. Para m谩s detalle y ejemplos pueden usar de esta lectura la secci贸n Feature Branch Workflow.

From: https://www.atlassian.com/pt/git/workflows

Pasos para empezar a trabajar en una feature

@hoandang
hoandang / php-docker-ext
Created May 20, 2017 01:12
Complete list of php docker ext
RUN apt update
RUN apt upgrade -y
RUN apt install -y apt-utils
RUN a2enmod rewrite
RUN apt install -y libmcrypt-dev
RUN docker-php-ext-install mcrypt
RUN apt install -y libicu-dev
RUN docker-php-ext-install -j$(nproc) intl
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
@llbbl
llbbl / awesome-php.md
Last active May 24, 2025 11:52 — forked from ziadoz/awesome-php.md
Awesome PHP Libraries and Resources

Awesome PHP

A list of amazingly awesome PHP libraries, resources and shiny things.

Categories

  • Composer
  • Composer Related
  • Frameworks
  • Micro Frameworks