Skip to content

Instantly share code, notes, and snippets.

View ovvessem's full-sized avatar

Ortwin van Vessem ovvessem

View GitHub Profile
@laravel-shift
laravel-shift / .php-cs-fixer.php
Last active May 20, 2025 03:39
PHP CS Fixer - Laravel Coding Style Ruleset
<?php
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$rules = [
'array_indentation' => true,
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => [
'default' => 'single_space',
@StefanoGroenland
StefanoGroenland / classes.php
Created October 18, 2018 07:53
Picqer client classes.
<?php
namespace App\Financials\ExactOnline\Sync\Connection;
/**
* Class ResourceImporter
*
* @package App\Financials\ExactOnline\Sync
* @copyright Copyright (c) 2018, POS4RESTAURANTS BV
*/
@calebporzio
calebporzio / SvgIcon.vue
Created February 19, 2018 19:08
SVG Icon Vue Component
<template>
<div class="inline-block" v-html="require('icon-' + this.icon + '.svg')"></div>
</template>
<style module>
.svg {
fill: currentColor;
height: 1em;
margin-top: -4px;
vertical-align: middle;