Skip to content

Instantly share code, notes, and snippets.

@rleger
rleger / HTML 5 Start File
Last active December 19, 2015 12:09 — forked from peteymoore/gist:5392815
HTML 5 Start file
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5 Template</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>
@rleger
rleger / .php_cs
Created January 4, 2016 00:20 — forked from jatubio/.php_cs
Config file to pass PHP-CS-Fixer with Laravel 5.1 custom and PSR-2 styles coding
<?php
$finder = Symfony\Component\Finder\Finder::create()
->notPath('bootstrap/cache')
->notPath('storage')
->notPath('vendor')
->in(__DIR__)
->name('*.php')
->ignoreDotFiles(true)
->ignoreVCS(true);