This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <table cellpadding="0" cellspacing="0" style="border-collapse: collapse; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 1.45; color: rgb(17, 17, 17);"> | |
| <tbody><tr> | |
| <td style="padding: 0px 0px 8px;"> | |
| <div style="font-weight: 700; font-size: 16px;">Matt Erskine</div> | |
| <div>Co-founder</div> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td style="padding: 8px 0px; border-top: 1px solid rgb(230, 230, 230);"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYIAAABnCAYAAAANBEUMAAAABHNCSVQICAgIfAhkiAAAAF96VFh0UmF3IHByb2ZpbGUgdHlwZSBBUFAxAAAImeNKT81LLcpMVigoyk/LzEnlUgADYxMuE0sTS6NEAwMDCwMIMDQwMDYEkkZAtjlUKNEABZgamFmaGZsZmgMxiM8FAEi2FMk61EMyAAAgAElEQVR4nO197XWjvtP2+Dn392UrWFLBshWEVBBcQXAF61QQXAFOBXgrwKkAbwWQCiAV4H8F83zA4ifLkpCEwE5W1zk6m01soZd512gAcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHD4mlhcewAEiOgDgA8AzWKxaK46GAcHBhR9EoSnfysAOFK/rxaLBf1/hy+OryC7ZlcEiB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| // Terminal | |
| { | |
| "key": "ctrl+v", | |
| "command": "workbench.action.terminal.focus", | |
| "when": "!terminalFocus" | |
| }, | |
| { | |
| "key": "ctrl+v", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "workbench.editor.enablePreview": false, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.colorTheme": "Allure (rainglow)", | |
| "window.zoomLevel": 0, | |
| "explorer.autoReveal": false, | |
| "git.autofetch": true, | |
| "search.useIgnoreFiles": false, | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 13, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM php:7.2.8-fpm-alpine3.7 | |
| # Depedencies | |
| RUN set -x \ | |
| && mkdir -p /var/log/supervisor \ | |
| && apk update \ | |
| && apk add --virtual .build-deps \ | |
| alpine-sdk \ | |
| autoconf \ | |
| sudo \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class PlumbingTest extends TestCase | |
| { | |
| public function test_the_plumbing() | |
| { | |
| foreach (app()->getBindings() as $key => $binding) { | |
| app($key); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Http\Controllers; | |
| use App\Registration\UserRegistrar; | |
| use Laravel\Socialite\Facades\Socialite; | |
| class AuthController extends Controller | |
| { | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Http; | |
| use Illuminate\Http\JsonResponse; | |
| use Illuminate\Validation\ValidationException; | |
| use App\Contracts\Http\Resources\ValidatorResourceContract; | |
| class ResourceDirector | |
| { |