Hi, I'm Erin. If you're reading this you're probably using one or more of my open-source PHP repositories (most likely from the Eloquent GitHub organization). I'm writing this to let you know that I've decided to stop supporting all of my PHP packages. I will soon begin the process of deprecating them.
mindmap
root((mindmap))
Origins
Long history
::icon(fa fa-book)
Popularisation
British popular psychology author Tony Buzan
Research
On effectivenessand features
This file contains 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
#!/usr/bin/env bash | |
FORMULA="$1" | |
VERSION="$2" | |
if [[ -z "$FORMULA" || -z "$VERSION" ]]; then | |
>&2 echo "Usage: $0 <formula> <version>" | |
>&2 echo "Example: $0 telepresence-arm64 2.8.5" | |
exit 1 |
This file contains 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
self.__WB_MANIFEST = [{"revision":"c5ad0f758cb33c2cbbdcc517448a9f76","url":"/A.css"},{"revision":"7b245aebbdd7895ab421d41e3b6f3d51","url":"/A.js"},{"revision":"696705ce52178c7fa07c27f84660a362","url":"/B.js"},{"revision":"588770cd8225077b1984f0aac2d6fb87","url":"/C.js"},{"revision":"640755b9813181ec9f03c1e06cee5805","url":"/ClientOnly.js"},{"revision":"832c5eb68f03fa8991dec0254c21d2be","url":"/D.js"},{"revision":"f5e08e84750125bcaf410dd3877708f9","url":"/Dashboard.js"},{"revision":"7680f1e15c0e1de9bb53a1c15cd78372","url":"/SignIn.css"},{"revision":"68c63b83560dd587e53482c0fc1a4a81","url":"/SignIn.js"},{"revision":"aa7ddf0fa7e92687a0c4472bbc509eb9","url":"/SignOut.js"},{"revision":"e60c6eb5ec5f2f167e488ca4d0b7f48c","url":"/app-shell.html"},{"revision":"1b8baaa899f82e52a79046268a196826","url":"/main.css"},{"revision":"85e812ab2c4d0b0b5974853264d403ce","url":"/main.js"},{"revision":"52428c867f36a00aab33683b0ffda3dd","url":"/workbox-window.js"}];/******/ (function(modules) { // webpackBootstrap | |
/******/ var hotA |
This file contains 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
/* eslint-disable import/no-commonjs */ | |
const ExtractCssChunksPlugin = require('extract-css-chunks-webpack-plugin') | |
const HtmlPlugin = require('html-webpack-plugin') | |
const htmlPluginTemplate = require('html-webpack-template') | |
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin') | |
const {resolve} = require('path') | |
module.exports = (_, {mode = 'development'} = {}) => { | |
const isProduction = mode === 'production' |
I hereby claim:
- I am ezzatron on github.
- I am ezzatron (https://keybase.io/ezzatron) on keybase.
- I have a public key whose fingerprint is CED4 F1B5 27FC 5D81 7B7E F2AD 03CF 7B8D E959 D7C3
To claim this, I am signing this object:
This file contains 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 TypeCheckingProxy | |
{ | |
public function __construct($object) | |
{ | |
$this->object = $object; | |
$this->class = get_class($object); | |
$reflector = new ReflectionObject($object); |
This file contains 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 | |
const WM_CASEFOLD = 1; | |
const WM_PATHNAME = 2; | |
const WM_ABORT_MALFORMED = 2; | |
const WM_NOMATCH = 1; | |
const WM_MATCH = 0; | |
const WM_ABORT_ALL = -1; | |
const WM_ABORT_TO_STARSTAR = -2; |
This file contains 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 | |
/* | |
* This file is part of the Phony package. | |
* | |
* Copyright © 2014 Erin Millard | |
* | |
* For the full copyright and license information, please view the LICENSE file | |
* that was distributed with this source code. | |
*/ |
NewerOlder