Skip to content

Instantly share code, notes, and snippets.

Currently we have entities that looks like this:

class MemberSession implements Entity
{
    private $memberId;
    private $subscriptionId;
    private $username;
    private $nickname;
    private $trial;
@Phillaf
Phillaf / .drone.yml
Created November 10, 2016 12:55
medium-drone-droneconfig
build:
image: phillaf/php-mricg
commands:
- composer update
- vendor/bin/phpunit
- vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests
@Phillaf
Phillaf / docker-compose.yml
Last active November 10, 2016 13:51
medium-drone
version: '2'
services:
drone:
container_name: drone
image: drone/drone
restart: always
ports:
- 80:8000
volumes:
language: php
php:
- 5.5
- 5.6
- 7.0
sudo: false
env:
@Phillaf
Phillaf / Terminator Config
Last active August 29, 2015 14:23
.config/terminator/config
[global_config]
use_custom_url_handler = True
custom_url_handler = google-chrome
suppress_multiple_term_dialog = True
[keybindings]
next_tab = <Ctrl>Tab
prev_tab = <Ctrl><Shift>Tab
switch_to_tab_6 = <Alt>6
switch_to_tab_7 = <Alt>7
switch_to_tab_4 = <Alt>4