Skip to content

Instantly share code, notes, and snippets.

View laravel-shift's full-sized avatar

Laravel Shift laravel-shift

View GitHub Profile
@laravel-shift
laravel-shift / .shiftrc
Last active July 21, 2022 15:23
Default configuration file for setting Shift preferences
; Within this file you may set preferences for Shift.
; These may be used to customize the behavior of the
; Shift bot by disabling or guiding the automation.
; NOTE: Any paths should be relative to location
; of this file and exclude a trailing slash.
; Section to set options for PHP Shifts.
[php]
@laravel-shift
laravel-shift / .php-cs-fixer.php
Last active April 9, 2024 14:08
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',
@laravel-shift
laravel-shift / build.yml
Created February 5, 2021 20:22
GitHub Action build for laravelshift.com
name: Build
on: [ pull_request ]
jobs:
build:
runs-on: ubuntu-latest
services:
mysql:
@laravel-shift
laravel-shift / tailwind.css
Created December 20, 2021 15:27
Tailwind Forms 1.x border styles
@layer base {
[type='text'],
[type='email'],
[type='url'],
[type='password'],
[type='number'],
[type='date'],
[type='datetime-local'],
[type='month'],
[type='search'],